from k1lib.imports import *
/home/kelvin/anaconda3/envs/ray2/lib/python3.9/site-packages/scipy/__init__.py:155: UserWarning: A NumPy version >=1.18.5 and <1.25.0 is required for this version of SciPy (detected version 1.25.0
warnings.warn(f"A NumPy version >={np_minversion} and <{np_maxversion}"
2024-01-14 23:55:07,114 INFO worker.py:1458 -- Connecting to existing Ray cluster at address: 192.168.1.19:6379...
2024-01-14 23:55:07,123 INFO worker.py:1633 -- Connected to Ray cluster. View the dashboard at 127.0.0.1:8265
Tries to crawl Touhou wiki using the tool I just built to control lots of browsers at once, in real time. Kinda like selenium, but with a lot more throughput, and works across multiple computers throughout the world.
Have a bunch of interesting crawl dynamics, and built lots of search tools for the entire wiki. Originally I wanted to grab all music in touhou, and inject it into my body, but discovering them by pure chance is not an option for me, too slow and too luck-based. I also kinda want to have an overview of the interactions between characters, some basics stats about them and other good meta stuff.
b = zircon.newBrowser()
(await b.scan()).items() | head(2) & shape() | deref()
Connecting to server... Connected
[[('_ext_399620395_1701588172_16',
{'basics': {'title': '', 'url': 'https://zircon.mlexps.com/'},
'tabInfo': {'tabId': 2053006725,
'data': {'extId': '_ext_399620395_1701588172_16', 'groupPath': 'mint2'}},
'lastUpdated': 1701633186.1766047,
'lastPing': 1701646412.277324}),
('_ext_399620395_1701588172_44',
{'basics': {'title': '', 'url': 'https://zircon.mlexps.com/'},
'tabInfo': {'tabId': 2053006715,
'data': {'extId': '_ext_399620395_1701588172_44', 'groupPath': 'mint2'}},
'lastUpdated': 1701596534.2186072,
'lastPing': 1701646412.1506917})],
(30, 2, 28)]
cat("100-links.txt") | headOut()
https://en.touhouwiki.net/wiki/Reimu_Hakurei https://en.touhouwiki.net/wiki/Marisa_Kirisame https://en.touhouwiki.net/wiki/Touhou_Project https://en.touhouwiki.net/wiki/Imperishable_Night https://en.touhouwiki.net/wiki/Perfect_Cherry_Blossom https://en.touhouwiki.net/wiki/Embodiment_of_Scarlet_Devil https://en.touhouwiki.net/wiki/Subterranean_Animism https://en.touhouwiki.net/wiki/Mountain_of_Faith https://en.touhouwiki.net/wiki/Phantasmagoria_of_Flower_View https://en.touhouwiki.net/wiki/Hakurei_Shrine
Just to see whether it works. Yep, it does, with flying colors!
linksToVisit = cat("100-links.txt") | head(10) | deref() | aS(deque)
data = []
async def crawl(b:"zircon.Browser"):
if len(linksToVisit) == 0: raise zircon.BrowserCancel()
url = linksToVisit.popleft()
await b.goto(url)
title = await (await b.querySelector("title")).value("innerHTML")
data.append([url, title])
bg = zircon.BrowserGroup("mint3", 5); startTime = time.time()
await bg.execute(crawl); time.time() - startTime
Executing. #browsers=5 #running=0 Task finished
13.310228824615479
Benchmark crawling¶
Let's benchmark crawling capacity for these 100 links, using up to 10 browsers:
#notest
b"" | file("benchmark.pth")
async def crawl(b:"zircon.Browser"):
# await asyncio.sleep(1)
if len(linksToVisit) == 0: raise zircon.BrowserCancel()
url = linksToVisit.popleft()
try:
await b.goto(url, 20)
title = await (await b.querySelector("title")).value("innerHTML")
data.append([url, title])
except asyncio.CancelledError: print(f"{url} cancelled"); linksToVisit.append(url) # if the browser is stuck for some reason
except Exception as e: print(e); linksToVisit.append(url) # try again later, for random errors that emit on Client class
for n in range(1, 11) | reverse():
data = []; linksToVisit = cat("100-links.txt") | deref() | aS(deque)
bg = zircon.BrowserGroup("mint3", n); startTime = time.time()
await bg.execute(crawl, 30); [n, time.time() - startTime, len(data)] | aS(dill.dumps) >> file("benchmark.pth")
Executing. #browsers=10 #running=0 Task finished Executing. #browsers=9 #running=0 Task finished Executing. #browsers=8 #running=0 Task finished Executing. #browsers=7 #running=0 Task finished Executing. #browsers=6 #running=0 Task finished Executing. #browsers=5 #running=0 Task finished Executing. #browsers=4 #running=0 Task finished Executing. #browsers=3 #running=0 Task finished Executing. #browsers=2 #running=0 Task finished Executing. #browsers=1 #running=0 Task finished
data = cat.pickle("benchmark.pth") | deref(); data
[[10, 58.96689319610596, 100], [9, 64.51377511024475, 100], [8, 70.91374802589417, 100], [7, 78.78047728538513, 100], [6, 89.70194506645203, 100], [5, 109.91366410255432, 100], [4, 131.04620671272278, 100], [3, 176.15958380699158, 100], [2, 258.67259216308594, 100], [1, 515.098153591156, 100]]
fig, axes = plt.subplots(1, 2, figsize=(10, 4))
plt.sca(axes[0]); data | cut(0, 1) | sort(0) | T() | ~aS(plt.plot); plt.xlabel("#browsers"); plt.ylabel("Time to crawl 100 pages (s)"); plt.grid(True)
plt.sca(axes[1]); data | cut(0, 1) | sort(0) | T() | ~aS(plt.plot); plt.xlabel("#browsers"); plt.ylabel("Time to crawl 100 pages (s)"); plt.grid(True); plt.yscale("log"); plt.tight_layout()
data | ~apply(lambda x,y,z: [x,x*y]) | sort(1) | zeroes(1, True) | apply(1/op(), 1) | sort(0) | transpose() | ~aS(plt.plot)
plt.ylim(0, 1.1); plt.grid(True); plt.xlabel("#browsers"); plt.ylabel("Relative efficiency"); plt.grid(True)
The efficiency number here is how much perf we lost when compared to 1 browser/computer (right now it's 10 browsers/computer). It does drop off over time, signalling that the computer is having a little trouble keeping up.
Main crawl¶
Now let's crawl for real. Beware, only execute the cell below once. It wipes all data! Also, this crawl attempt will utilize 2 computers: Intel 10700k (20 browsers) and Ryzen 5600U (10 browsers)
b"" | file("touhou.pth")
visited = set() | k1.Wrapper(); goingToVisit = deque(["https://en.touhouwiki.net/wiki/Touhou_Wiki"]) | k1.Wrapper() # to be explored
[visited, goingToVisit] | aS(dill.dumps) | file("progress.pth")
'progress.pth'
visited, goingToVisit = cat("progress.pth", False) | aS(dill.loads)
grabLinks = toLinks(~filt(op().startswith("#"))) | filt(op().startswith("https://en.touhouwiki.net/wiki")) | op().split("#")[0].all() | aS(set)
saveProgress = lambda: [visited, goingToVisit] | aS(dill.dumps) | file("progress.pth")
startTime = time.time()
async def crawl(b:"zircon.Browser"):
while len(goingToVisit()) == 0:
if time.time() - startTime > 60: raise zircon.BrowserCancel() # if no urls for too long then job is finished
await asyncio.sleep(0.1)
url = goingToVisit().popleft()
if url in visited(): return
if "/wiki/File:" in url or "/wiki/Special:" in url: visited().add(url); saveProgress(); return
try:
await b.goto(url, 60)
title = await (await b.querySelector("title")).value("innerHTML")
body = await (await b.querySelector("body")).value("innerHTML")
urls = b | grabLinks; visited().add(url)
# below is guaranteed to work and will not be interrupted
["ok", time.time(), url, title, body, urls, len(visited()), len(goingToVisit())] | aS(dill.dumps) >> file("touhou.pth")
for url in urls:
if url not in visited() and url not in goingToVisit(): goingToVisit().append(url)
saveProgress()
except Exception as e: goingToVisit().append(url)
bg = zircon.BrowserGroup(["mint2", "mint3"], 100)
await bg.execute(crawl, 30)
Executing. #browsers=30 #running=0 #tasks=0 Task finished
Repairing non-functioning crawls¶
cat.pickle("touhou.pth") | filt(op().strip().startswith("<h1>Zircon browser automation"), 4) | cut(2) | file("redo.txt")
'redo.txt'
b"" | file("redo.pth")
goingToVisit = cat("redo.txt") | deref() | aS(deque) | k1.Wrapper()
async def crawl(b:"zircon.Browser"):
if len(goingToVisit()) == 0: raise zircon.BrowserCancel()
url = goingToVisit().popleft()
try:
await b.goto(url, 60)
title = await (await b.querySelector("title")).value("innerHTML")
body = await (await b.querySelector("body")).value("innerHTML")
urls = b | grabLinks; visited().add(url)
# below is guaranteed to work and will not be interrupted
["ok", time.time(), url, title, body, urls, -1, -1] | aS(dill.dumps) >> file("redo.pth")
except Exception as e: goingToVisit().append(url)
bg = zircon.BrowserGroup(["mint3"], 100)
await bg.execute(crawl, 30)
Executing. #browsers=10 #running=0 #tasks=0 Task finished
Joining them together:
%%time
cat.pickle("touhou.pth") | shape()
CPU times: user 1.06 s, sys: 164 ms, total: 1.22 s Wall time: 1.21 s
(24863, 8, 2)
%%time
[cat.pickle("touhou.pth") | ~filt(op().strip().startswith("<h1>Zircon browser automation"), 4), cat.pickle("redo.pth")] | joinSt() | apply(dill.dumps) | file("final.pth")
CPU times: user 10.6 s, sys: 1.21 s, total: 11.8 s Wall time: 11.6 s
'final.pth'
%%time
cat.pickle("final.pth") | shape()
CPU times: user 1.06 s, sys: 240 ms, total: 1.3 s Wall time: 1.28 s
(24863, 8, 2)
Moving everything to a separate folder:
None | cmd("mkdir -p run1; mv touhou.pth run1/touhou-pre.pth; mv final.pth run1/touhou.pth; mv progress.pth run1/; mv redo.pth run1/; mv redo.txt run1/") | deref()
[]
Ok cool.
Old, single-browser crawl¶
Kept here just so that I have a reference in the future.
visited, goingToVisit = cat("progress.pth", False) | aS(dill.loads)
grabLinks = toLinks(~filt(op().startswith("#"))) | filt(op().startswith("https://en.touhouwiki.net/wiki")) | op().split("#")[0].all() | aS(set)
async def explore(url):
if url in visited(): return
visited().add(url)
try:
await b.goto(url)
title = await (await b.querySelector("title")).value("innerHTML")
body = await (await b.querySelector("body")).value("innerHTML")
urls = b | grabLinks
["ok", time.time(), url, title, body, urls, len(visited()), len(goingToVisit())] | aS(dill.dumps) >> file("touhou.pth")
for url in urls:
if url not in visited() and url not in goingToVisit(): goingToVisit().append(url)
except Exception as e: ["not ok", time.time(), url, e, traceback.format_exc()] | aS(dill.dumps) >> file("touhou.pth")
[visited, goingToVisit] | aS(dill.dumps) | file("progress.pth")
while len(goingToVisit()) > 0:
try: await asyncio.wait_for(explore(goingToVisit().popleft()), 30)
except Exception as e: print(e); print(traceback.format_exc())
Analysis¶
from k1lib.imports import *
load = lambda: cat.pickle("run1/touhou.pth")
/home/kelvin/anaconda3/envs/ray2/lib/python3.9/site-packages/scipy/__init__.py:155: UserWarning: A NumPy version >=1.18.5 and <1.25.0 is required for this version of SciPy (detected version 1.25.0
warnings.warn(f"A NumPy version >={np_minversion} and <{np_maxversion}"
2024-01-14 23:55:20,679 INFO worker.py:1458 -- Connecting to existing Ray cluster at address: 192.168.1.19:6379...
2024-01-14 23:55:20,687 INFO worker.py:1633 -- Connected to Ray cluster. View the dashboard at 127.0.0.1:8265
Crawl dynamics¶
fig, axes = plt.subplots(1, 2, figsize=(10, 4))
plt.sca(axes[0]); load() | cut(7) | insertIdColumn(begin=False) | filt("x", 1) | ~apply(lambda x,y: x/y) | deref() | aS(plt.plot)
plt.yscale("log"); plt.xlabel("#pages visited"); plt.ylabel("#goingToVisit/#visited"); plt.grid(True)
plt.sca(axes[1]); load() | cut(7) | insertIdColumn(begin=False) | filt("x", 1) | ~apply(lambda x,y: x/y) | insertIdColumn() | ~head(0.93) | transpose() | deref() | ~aS(plt.plot)
plt.yscale("log"); plt.xlabel("#pages visited"); plt.ylabel("#goingToVisit/#visited"); plt.grid(True); plt.tight_layout()
fig, axes = plt.subplots(1, 2, figsize=(10, 4))
plt.sca(axes[0]); load() | cut(7) | window(2) | ~apply(lambda x,y: y-x) | smooth(30) | deref() | aS(plt.plot)
plt.yscale("log"); plt.xlabel("#pages visited"); plt.ylabel("Additional #goingToVisit pages"); plt.grid(True)
plt.sca(axes[1]); load() | cut(7) | window(2) | ~apply(lambda x,y: y-x) | apply(op()+3) | filt("x>0") | apply(math.log) | hist(100, True) | (aS(np.exp) | op()-3) + iden() | ~aS(plt.plot)
plt.xscale("log"); plt.xlabel("Additional #goingToVisit per page visit"); plt.yscale("log"); plt.ylabel("Frequency"); plt.grid(True); plt.tight_layout()
fig, axes = plt.subplots(1, 2, figsize=(10, 4))
plt.sca(axes[0]); load() | cut(7) | deref() | aS(plt.plot)
plt.xlabel("#pages visited"); plt.grid(True); plt.ylabel("#goingToVisit");
plt.sca(axes[1]); load() | cut(7) | insertIdColumn() | ~head(0.9) | T() | ~aS(plt.plot)
plt.xlabel("#pages visited"); plt.grid(True); plt.ylabel("#goingToVisit"); plt.tight_layout()
Just like above, but separated for the thumbnail:
# thumbnail
load() | cut(7) | deref() | aS(plt.plot)
plt.xlabel("#pages visited"); plt.grid(True); plt.ylabel("#goingToVisit");
load() | cut(1) | sort(None) | zeroes() | window(2) | ~apply(lambda x,y: y-x) | serial(*[filtStd() for i in range(6)]) | deref() | aS(plt.hist, bins=30)
plt.xlabel("Time to search 1 page (s)"); plt.ylabel("Frequency"); plt.grid(True)
plt.title(load() | cut(1) | sort(None) | zeroes() | window(2) | ~apply(lambda x,y: y-x) | serial(*[filtStd() for i in range(6)]) | aS(k1.UValue.fromSeries) | aS(lambda x: f"Average: {x}"));
linearTime = load() | cut(1) | sort(None) | batchedTrigger(delta=100) | ~zeroes() | joinSt() | deref() | k1.Wrapper()
linearTime() | shape()
(24863,)
Total crawl time (hours), although there're some weird dynamics where apparently the computer goes to sleep or sth:
linearTime() | reverse() | item() | op()/3600
10.396187388565805
fig, axes = plt.subplots(1, 2, figsize=(10, 4))
plt.sca(axes[0]); linearTime() | insertIdColumn() | ~head(5) | ~apply(lambda x,y: y/x) | deref() | aS(plt.plot)
plt.xlabel("#pages visited"); plt.ylabel("Scanning time (s)/page"); plt.grid(True)
plt.sca(axes[1]); linearTime() | batched(30) | apply(zeroes() | reverse() | item() | op()/30) | insertIdColumn() | apply("x*30", 0) | transpose() | ~aS(plt.plot)
plt.xlabel("#pages visited"); plt.ylabel("Moving scanning time/page"); plt.grid(True); plt.tight_layout()
linearTime() | insertIdColumn() | ~head(100) | head(6000) | ~apply(lambda x,y: y/x) | deref() | aS(plt.plot)
plt.xlabel("#pages visited"); plt.ylabel("Scanning time (s)/page"); plt.grid(True)
So, initially (<5000 pages), my scan rate is like 3 pages/s. But then it got progressively worse over time. Not entirely sure why, but here're some of my hypothesis:
- I'm being rate limited by my ISP
- I'm being rate limited by Touhou wiki
- I'm being rate limited by ZeroTier (traffic goes through their relay network, for some reason)
- My code's the culprit, saving to files takes progressively more and more time
Meta analysis¶
fig, axes = plt.subplots(1, 2, figsize=(10, 4))
plt.sca(axes[0]); load() | cut(4) | apply(shape(0)) | apply(math.log) | hist() | aS(np.exp) + iden() | ~aS(plt.plot)
plt.xscale("log"); plt.yscale("log"); plt.xlabel("File size (bytes)"); plt.ylabel("Frequency"); plt.grid(True)
plt.sca(axes[1]); load() | cut(4) | apply(shape(0)) | filt("x>8e3") | apply(math.log) | hist() | aS(np.exp) + iden() | ~aS(plt.plot)
plt.xscale("log"); plt.yscale("log"); plt.xlabel("File size (bytes)"); plt.ylabel("Frequency"); plt.grid(True); plt.tight_layout()
Nice.
load() | cut(7) | ~head(0.8) | deref() | aS(plt.plot)
plt.xlabel("#pages visited"); plt.grid(True); plt.ylabel("#goingToVisit");
load() | (aS(repr) | head(30)).all(2) | head() | insert(["status", "time", "url", "title", "body", "#links", "#visited", "#goingToVisit"] | insertIdColumn() | ~apply(lambda x,y: f"{x}) {y}")) | display()
0) status 1) time 2) url 3) title 4) body 5) #links 6) #visited 7) #goingToVisit
'ok' 1701593131.563341 'https://en.touhouwiki.net/wik 'Touhou Wiki - Characters, gam '<div id="mw-page-base" class= {'https://en.touhouwiki.net/wi 1 0
'ok' 1701593137.5539052 'https://en.touhouwiki.net/wik 'Double Dealing Character - To '<div id="mw-page-base" class= {'https://en.touhouwiki.net/wi 5 126
'ok' 1701593137.7310948 'https://en.touhouwiki.net/wik 'Doujin portal - Touhou Wiki - '<div id="mw-page-base" class= {'https://en.touhouwiki.net/wi 6 256
'ok' 1701593137.966934 'https://en.touhouwiki.net/wik 'Antinomy of Common Flowers - '<div id="mw-page-base" class= {'https://en.touhouwiki.net/wi 7 337
'ok' 1701593138.1745608 'https://en.touhouwiki.net/wik "Akyu's Untouched Score vol.4 '<div id="mw-page-base" class= {'https://en.touhouwiki.net/wi 8 451
'ok' 1701593138.679268 'https://en.touhouwiki.net/wik 'Ghostly Field Club - Touhou W '<div id="mw-page-base" class= {'https://en.touhouwiki.net/wi 9 461
'ok' 1701593138.8955295 'https://en.touhouwiki.net/wik 'Bohemian Archive in Japanese '<div id="mw-page-base" class= {'https://en.touhouwiki.net/wi 10 492
'ok' 1701593139.256258 'https://en.touhouwiki.net/wik "Akyu's Untouched Score vol.1 '<div id="mw-page-base" class= {'https://en.touhouwiki.net/wi 11 570
'ok' 1701593139.4780688 'https://en.touhouwiki.net/wik 'Oriental Sacred Place - Touho '<div id="mw-page-base" class= {'https://en.touhouwiki.net/wi 12 577
load() | cut(0) | count() | deref()
[[24863, 'ok', '100%']]
fig, axes = plt.subplots(1, 2, figsize=(10, 4))
plt.sca(axes[0]); load() | cut(4) | shape(0).all() | filt("x>3e3") | apply(math.log) | hist(100) | aS(np.exp) + iden() | head(2) | ~aS(plt.plot)
plt.xscale("log"); plt.grid(True); plt.xlabel("Page size (bytes)"); plt.ylabel("Frequency");
plt.sca(axes[1]); load() | cut(4) | shape(0).all() | filt("x>3e3") | apply(math.log) | hist(100) | aS(np.exp) + iden() | head(2) | ~aS(plt.plot)
plt.xscale("log"); plt.grid(True); plt.xlabel("Page size (bytes)"); plt.ylabel("Frequency"); plt.yscale("log"); plt.tight_layout()
load() | cut(5) | shape(0).all() | filt("x>3") | apply(math.log) | hist(50) | aS(np.exp) + iden() | head(2) | ~aS(plt.plot)
plt.xscale("log"); plt.yscale("log"); plt.grid(True); plt.xlabel("#links"); plt.ylabel("Frequency");
Content search¶
Articles ordered by size (bytes) from biggest to smallest:
load() | apply(shape(0), 4) | ~sort(4) | ~cut(4, 5) | cut(3) | apply(op().split(" - Touhou Wiki -")[0]) | unique() | batched(30) | head(5) | transpose() | display(None)
Marisa Kirisame User:Sefam/Reimu Release Timeline Hong Meiling Doujin circles Reimu Hakurei Touhou Nico Dousai Popularity Contest Komachi Onozuka Riverbed Soul Saver/Characters Bamboo Forest of the Lost High scores Utsuho Reiuji Touhou Angband:monster.txt Merlin Prismriver Mystia Lorelei Yukari Yakumo Nitori Kawashiro Chen アールグレイ Unzan The Genius of Sappheiros/Bestiary/Incident Fujiwara no Mokou Fangames EastNewSound 荒御霊 MediaWiki:Common.css Potential Comics Eiki Shiki, Yamaxanadu Flandre Scarlet 東方九十九折 Sakuya Izayoi Moon Pizuya's Cell Iku Nagae Bubbling Imaginary Treasures/Characters Touhou Pocket Wars 2nd/Translation List by Groups 3 Mononobe no Futo Kaguya Houraisan Touhoudex 2/Touhoudex 2 Hakurei Shrine Byakuren Hijiri THWiki Popularity Poll/2003-2006 Little Doll Queen/Music Dream Logical World/Story/Language Team's Scenario Remilia Scarlet Tenshi Hinanawi The Genius of Sappheiros/Bestiary/Lakebed Temple List of Spell Cards/Touhou Project 3 Template:Cite book Youmu Konpaku Shinmyoumaru Sukuna Alstroemeria Records Netherworld Benben Tsukumo 幽閉サテライト Scarlet Devil Mansion Ichirin Kumoi Yuuka Kazami Gensou Tansaku Nitroid!/Worlds/World 5 Aya Shameimaru Toyosatomimi no Miko Doremy Sweet Tewi Inaba Little Doll Queen/Characters Patchouli Knowledge List of Spell Cards/Touhou Project 2 A-One Replays/CLR Minamitsu Murasa Suika Ibuki Comics by Release 凋叶棕 Okina Matara Infinite Blade Pavilion/Characters Yuyuko Saigyouji List by Groups Sumireko Usami Mystical Power Plant/Characters User:K/de:Filename Conflicts Sanae Kochiya List by Groups 2 Touhou Love Stories: The Bad Ends (fifth thread) Lily White TAMUSIC Touhou Cannonball/Music/Battle Tracks Amateras Records List of Skills Nue Houjuu The Nightmare of Rebellion/Translation/Chapter2 List of Spell Cards/Touhou Project 1 Ran Yakumo Kasen Ibaraki The Genius of Sappheiros/Bestiary/Youkai Mountain Yuugi Hoshiguma Reisen Udongein Inaba Category talk:Characters/Archive 2 Strange Articles of the Outer World/ZUN long interview Sunflower Fairy Lotus Land Story/Music Cirno Kanako Yasaka 暁Records Rin Kaenbyou Labyrinth of Touhou 2/Characters/Characters 3 DiGiTAL WiNG Minor Characters Rumbling Spell Orchestra/Team Supports Lotus Land Story/Translation/Other Rumbling Spell Orchestra/FAQ Alice Margatroid Talk:Potential Comics Strange Creators of Outer World 1 (CD) Satori Komeiji The Genius of Sappheiros/Bestiary/Genbu's Stream IOSYS Rumbling Spell Orchestra/Team Events Yukkuri shiteitte ne!/List Nazrin Keine Kamishirasawa Subterranean Animism/Spell Cards/Stage 4 Eirin Yagokoro Touhou Danmaku Kagura/Music NON-STOP INTERCEPT phase two Doujin circles 2 Youkai Mountain Koishi Komeiji Rolling Contact Junko SIDEbySIDE Mamizou Futatsuiwa SOUND HOLIC Sapphire Panlogism/Characters Touhou M-1 Grand Prix Frantically Forbidden Fruit/Characters 豚乙女 Rumbling Spell Orchestra/General Characters/Titles Skies of Gensokyo Lunasa Prismriver Game Tools and Modifications Suwako Moriya Servants of Harvest Wish/Characters NON-STOP INTERCEPT phase one Touhou Love Stories: The Bad Ends (sixth thread) Fairy Hata no Kokoro Kogasa Tatara NON-STOP INTERCEPT Phase Three Talk:Touhou Wiki/Archive 10
Articles ordered by outgoing links
load() | apply(shape(0), 5) | ~sort(5) | cut(3) | apply(op().split(" - Touhou Wiki -")[0]) | unique() | batched(30) | head(5) | transpose() | display(None)
Marisa Kirisame Fujiwara no Mokou Yuugi Hoshiguma Wheel Ghost Soga no Tojiko Reimu Hakurei Komachi Onozuka Mystia Lorelei Rumia VIVIT Hakurei Shrine Kanako Yasaka Lyrica Prismriver Human Village Nemuno Sakata List by Groups Suwako Moriya Minamitsu Murasa Genbu Ravine ランコ List by Groups 3 Sunflower Fairy Lunasa Prismriver Seiga Kaku Sekibanki Yukari Yakumo Koishi Komeiji Yamame Kurodani Yin-Yang Orb Genre:Vocal Sakuya Izayoi Utsuho Reiuji Merlin Prismriver Kyouko Kasodani Genre:Instrumental Remilia Scarlet Toyosatomimi no Miko User:Araceli/Character Pages Seiran Wriggle Nightbug Aya Shameimaru Netherworld Hatate Himekaidou Mishaguji Wakasagihime Patchouli Knowledge Lily White Kasen Ibaraki Yoshika Miyako Yuuma Toutetsu List by Groups 2 Ichirin Kumoi Keine Kamishirasawa Mima Touhoudex 2/Touhoudex 2 Youmu Konpaku Bamboo Forest of the Lost Prismriver Sisters Saki Kurokoma PC-98 Yuyuko Saigyouji Iku Nagae Hata no Kokoro Eientei Sagume Kishin Suika Ibuki Unzan Shanghai Doll Momiji Inubashiri Ruukoto Reisen Udongein Inaba Mononobe no Futo Flandre Scarlet Moriya Shrine Junko Cirno Saigyou Ayakashi 3L Joon Yorigami Hecatia Lapislazuli Sanae Kochiya User:IbarakiIbuki/The User Database Minoriko Aki Kutaka Niwatari Seija Kijin Category talk:Characters/Archive 2 User:Sefam/Reimu Myouren Temple Fangames List by Groups (Letter)/A Youkai Mountain Shinmyoumaru Sukuna Medicine Melancholy Tsukasa Kudamaki Five Magic Stones Fairy Tewi Inaba Comics Shion Yorigami Hourai Alice Margatroid Skies of Gensokyo Parsee Mizuhashi Minor Characters Mysterious Orb Scarlet Devil Mansion Kogasa Tatara Misty Lake Touhou Project Luna Child Moon Yuuka Kazami Kaguya Houraisan Characters Satono Nishida Ran Yakumo Rin Kaenbyou Hina Kagiyama Genjii Mai Teireida Mamizou Futatsuiwa Satori Komeiji Doremy Sweet Yachie Kicchou Urumi Ushizaki Nitori Kawashiro Nue Houjuu Shou Toramaru Clownpiece Rinnosuke Morichika Eirin Yagokoro Nazrin Letty Whiterock Raiko Horikawa Dark Mirror Tenshi Hinanawi Sumireko Usami Shizuha Aki Eternity Larva Sunny Milk Byakuren Hijiri Hong Meiling Aunn Komano Narumi Yatadera Spirit Mirror Chen Eiki Shiki, Yamaxanadu Okina Matara Kisume Bewitching Lotus Flower
load() | cut(5) | joinSt() | count() | ~sort() | cut(0) | filt("x") | apply(math.log) | hist() | aS(np.exp) + iden() | ~aS(plt.plot)
plt.xscale("log"); plt.yscale("log"); plt.xlabel("#incoming links"); plt.ylabel("Frequency"); plt.grid(True)
Pages that are on that island on the far right:
load() | cut(5) | joinSt() | count() | ~sort() | filt("x>1e4", 0) | batched(20, True) | apply(pretty()) | T(fill="") | display(None)
load() | shape()
24561 https://en.touhouwiki.net/wiki/Category:Locations 1% 24561 https://en.touhouwiki.net/wiki/Touhou_Wiki:Community_portal 1% 24561 https://en.touhouwiki.net/wiki/Category:Bestiary 1% 24561 https://en.touhouwiki.net/wiki/Purchasing_Guide 1% 24561 https://en.touhouwiki.net/wiki/Category:Fanfiction 1% 24561 https://en.touhouwiki.net/wiki/Touhou_Wiki:Administrators 1% 24561 https://en.touhouwiki.net/wiki/Special:SpecialPages 1% 24561 https://en.touhouwiki.net/wiki/Replays 1% 24561 https://en.touhouwiki.net/wiki/Gensokyo 1% 24561 https://en.touhouwiki.net/wiki/Official_Literature 1% 24561 https://en.touhouwiki.net/wiki/Doujin_portal 1% 22571 https://en.touhouwiki.net/wiki/Touhou_Wiki:Copyrights 1% 24561 https://en.touhouwiki.net/wiki/Category:Characters 1% 24561 https://en.touhouwiki.net/wiki/Help:Group_rights 1% 20629 https://en.touhouwiki.net/wiki/Special:Categories 1% 24561 https://en.touhouwiki.net/wiki/High_scores 1% 24561 https://en.touhouwiki.net/wiki/Special:Random 1% 24561 https://en.touhouwiki.net/wiki/English_patches 1% 24561 https://en.touhouwiki.net/wiki/Comics 1% 24561 https://en.touhouwiki.net/wiki/Random_Things 1% 24561 https://en.touhouwiki.net/wiki/Game_Tools_and_Modifications 1% 24561 https://en.touhouwiki.net/wiki/Touhou_Wiki:Touhou_Genshajyou 1% 24561 https://en.touhouwiki.net/wiki/Glossary 1% 24561 https://en.touhouwiki.net/wiki/Links 1% 24561 https://en.touhouwiki.net/wiki/Doujin_circles 1% 24561 https://en.touhouwiki.net/wiki/List_of_Spell_Cards 1% 24561 https://en.touhouwiki.net/wiki/Category:Music_by_Game 1% 24561 https://en.touhouwiki.net/wiki/Special:CreateAccount 1% 24561 https://en.touhouwiki.net/wiki/Related_games 1% 24561 https://en.touhouwiki.net/wiki/Special:Upload 1% 24561 https://en.touhouwiki.net/wiki/Special:RecentChanges 1% 24561 https://en.touhouwiki.net/wiki/Category:Strategy 1% 24561 https://en.touhouwiki.net/wiki/Touhou_Wiki:Guidelines 1% 24561 https://en.touhouwiki.net/wiki/Touhou_Wiki 1% 24561 https://en.touhouwiki.net/wiki/Music_CDs 1% 24561 https://en.touhouwiki.net/wiki/Touhou_Wiki:General_disclaimer 1% 24561 https://en.touhouwiki.net/wiki/Touhou_Wiki:About 1% 24561 https://en.touhouwiki.net/wiki/Doujin_music 1% 24561 https://en.touhouwiki.net/wiki/Fangames 1% 24561 https://en.touhouwiki.net/wiki/Talk:Touhou_Wiki 1% 24561 https://en.touhouwiki.net/wiki/Touhou_Wiki:Privacy_policy 1% 24561 https://en.touhouwiki.net/wiki/Running_in_Linux_and_Mac_OS_X 1% 24561 https://en.touhouwiki.net/wiki/Touhou_Wiki:Wiki_Tutorial 1% 24561 https://en.touhouwiki.net/wiki/Config 1% 24561 https://en.touhouwiki.net/wiki/Category:Gameplay 1%
(24863, 8, 2)
So a majority of this are just pages that are on pretty much every page. What's left after filtering those out?
load() | cut(5) | joinSt() | count() | ~sort() | filt(op()<(load() | shape(0) | op()/2), 0) | head(1000) | lookup(load() | cut(2, 3) | toDict(), 1, fill=input) | apply(op().split(" - Touhou Wiki -")[0], 1) | unique(1) | batched(30) | head(5) | apply(pretty()) | transpose() | display(None)
5822 Category:Arrangement CDs 0% 1624 Remilia Scarlet 0% 1124 Flandre Scarlet 0% 878 Tewi Inaba 0% 758 Hata no Kokoro 0% 5064 Imperishable Night 0% 1621 Shoot the Bullet 0% 1108 Highly Responsive to Prayers 0% 874 Perfect Memento in Strict Sense 0% 758 Shou Toramaru 0% 5017 Embodiment of Scarlet Devil 0% 1547 Alice Margatroid 0% 1107 Koishi Komeiji 0% 858 Seihou Project 0% 754 Genre:Electronic 0% 4880 Perfect Cherry Blossom 0% 1545 Patchouli Knowledge 0% 1089 Fujiwara no Mokou 0% 858 Rin Kaenbyou 0% 750 Momiji Inubashiri 0% 4110 Mountain of Faith 0% 1541 Youmu Konpaku 0% 1061 Hopeless Masquerade 0% 856 Skies of Gensokyo 0% 742 ZUN 0% 3691 Category:Lyrics 0% 1538 Cirno 0% 1030 Touhou Hisoutensoku 0% 853 Antinomy of Common Flowers 0% 737 Kioh Gyoku 0% 3602 Subterranean Animism 0% 1536 Phantasmagoria of Dim.Dream 0% 1024 Eirin Yagokoro 0% 843 Nazrin 0% 733 PC-98 0% 3570 Reimu Hakurei 0% 1528 Yuyuko Saigyouji 0% 1019 Misty Lake 0% 838 Sumireko Usami 0% 732 Mima 0% 3547 Marisa Kirisame 0% 1460 Legacy of Lunatic Kingdom 0% 1005 Urban Legend in Limbo 0% 836 Chen 0% 721 Hina Kagiyama 0% 3365 Category:Lyrics in Kanji 0% 1394 Reisen Udongein Inaba 0% 1005 Forest of Magic 0% 827 Changeability of Strange Dream 0% 721 Daiyousei 0% 3334 Phantasmagoria of Flower View 0% 1372 Genre:Rock 0% 1002 Mamizou Futatsuiwa 0% 825 Kogasa Tatara 0% 715 Yamame Kurodani 0% 3116 Undefined Fantastic Object 0% 1354 https://en.touhouwiki.net/wiki/Category:Untranslated/Lyrics 0% 996 Toyosatomimi no Miko 0% 819 Clownpiece 0% 713 Aunn Komano 0% 2624 Touhou Project 0% 1338 Double Spoiler 0% 985 Kasen Ibaraki 0% 815 Keine Kamishirasawa 0% 711 Hatate Himekaidou 0% 2582 Category:No genres 0% 1318 Suika Ibuki 0% 982 Komachi Onozuka 0% 813 Rumia 0% 704 Retrospective 53 minutes 0% 2349 Ten Desires 0% 1307 Category:Doujin Circle/Arrangement 0% 968 Utsuho Reiuji 0% 811 Sunflower Fairy 0% 704 Minoriko Aki 0% 2155 Genre:Vocal 0% 1290 Suwako Moriya 0% 962 Windows 0% 810 Nue Houjuu 0% 702 Seiran 0% 2102 Immaterial and Missing Power 0% 1287 Nitori Kawashiro 0% 955 Human Village 0% 806 Great Fairy Wars 0% 701 Doremy Sweet 0% 2054 Genre:Instrumental 0% 1280 Fairy 0% 948 Iku Nagae 0% 806 Unconnected Marketeers 0% 701 Wriggle Nightbug 0% 1974 Hakurei Shrine 0% 1264 Touhou Wiki:Project Translations 0% 946 Ran Yakumo 0% 805 Wild and Horned Hermit 0% 699 Shion Yorigami 0% 1945 Yukari Yakumo 0% 1253 Kanako Yasaka 0% 946 Kaguya Houraisan 0% 793 Yuugi Hoshiguma 0% 697 Joon Yorigami 0% 1924 Lotus Land Story 0% 1251 Youkai Mountain 0% 930 Ghostly Field Club 0% 792 Yin-Yang Orb 0% 696 Moriya Shrine 0% 1887 Category:Arrangement/Vocal 0% 1227 Category:Arrangement/Rock 0% 930 Shinmyoumaru Sukuna 0% 788 Dolls in Pseudo Paradise 0% 694 Strange and Bright Nature Deity 0% 1843 https://en.touhouwiki.net/wiki/Category:Arrangement/Instrumental 0% 1209 Byakuren Hijiri 0% 926 Hong Meiling 0% 786 Minamitsu Murasa 0% 691 Parsee Mizuhashi 0% 1781 Sakuya Izayoi 0% 1166 Scarlet Devil Mansion 0% 919 Lily White 0% 783 Netherworld 0% 688 Forbidden Scrollery 0% 1762 Mystic Square 0% 1138 Shuusou Gyoku 0% 908 Yuuka Kazami 0% 771 Myouren Temple 0% 687 Medicine Melancholy 0% 1757 Sanae Kochiya 0% 1138 Tenshi Hinanawi 0% 907 Wily Beast and Weakest Creature 0% 766 Unzan 0% 687 Ringo 0% 1720 Double Dealing Character 0% 1132 Category:No catalogno 0% 906 Mononobe no Futo 0% 765 Mystia Lorelei 0% 684 Unfinished Dream of All Living Ghost 0% 1719 Touhou Wiki:Projects 0% 1131 Magical Astronomy 0% 885 Bamboo Forest of the Lost 0% 764 Youkai 0% 684 Silent Sinner in Blue 0% 1710 Scarlet Weather Rhapsody 0% 1127 Hidden Star in Four Seasons 0% 883 Satori Komeiji 0% 762 Okina Matara 0% 681 Category:Arrangement/Electronic 0% 1632 Aya Shameimaru 0% 1126 Story of Eastern Wonderland 0% 881 Ichirin Kumoi 0% 761 Seija Kijin 0% 677 Saki Kurokoma 0%
Cool. Search interface (ordered by #incoming links)
incomingLinks = load() | cut(5) | joinSt() | count() | ~sort() | cut(1, 0) | toDict() | k1.Wrapper()
load() | cut(2, 3, 4, 5) | apply(shape(0), [2, 3]) | filt("x", 1) | apply(op().split(" - Touhou Wiki -")[0], 1) | unique(2) | ~apply(lambda x,y,z,t: [x,y,z,t,incomingLinks().get(x, 0)]) | filt(op()<(load() | shape(0) | op()/2), 4) | ~sort(4) | deref()\
| (toJsFunc("term") | grep("${term}", col=1) | head(30) | apply(reverse()) | apply(html.escape, 3) | apply(""""<a href='" + x + "' target='_blank'>" + x + "</a>" """, 4) | insert(["#incoming links", "#outgoing links", "Page size (bytes)", "Title", "link"]) | pretty() | join("\n") | aS(fmt.pre)) | op().interface()
All types:
types = load() | cut(2, 3) | filt("x", 1) | apply(op().split(" - Touhou Wiki -")[0], 1) | grep(":", col=1) | ~apply(lambda x,y: [x,y,incomingLinks().get(x, -1)]) | ~sort(2) | cut(0, 1) | deref() | k1.Wrapper()
types() | cut(1) | op().split(":")[0].all() | count() | filt("x>2", 0) | ~sort() | batched(18, True) | pretty().all() | T(fill="") | display(None); types() | shape()
3721 Lyrics 43% 6 Help 0% 1741 Category 20% 6 RE 0% 989 Template 11% 5 Koumajou Densetsu II 0% 880 Talk 10% 5 ANOMALOUS 0% 668 User 8% 4 Koumajou Densetsu 0% 295 User talk 3% 4 Touhou Spell Bubble/Story/Reimu Arc 0% 42 Touhou Wiki 0% 4 Replays 0% 36 Replay 0% 4 Module 0% 35 Template talk 0% 4 Function 0% 32 Genre 0% 3 Touhou Kobuto V 0% 25 Re 0% 3 FLOWERs 0% 20 Category talk 0% 3 幻想パブ 0% 18 Touhou Wiki talk 0% 3 Shoot the Bullet 0% 11 "Activity" Case 0% 3 EXCEPTIONAL 0% 10 Toho Warfare 0% 3 Touhou Love Stories 0% 10 Touhou Angband 0% 8 MediaWiki 0% 8 List by Song 0%
(8689, 2, 48)
typeSearch = lambda type_: types() | grep(f"^{type_}:", col=1) | apply(op().split(":")[-1], 1) | deref()\
| (toJsFunc("term") | grep("${term}", col=1) | ~apply("""lambda x,y: '<a href="' + x + '" target="_blank">' + y + '</a>'""") | apply(fmt.pre) | batched(15, True) | head(10) | apply(fmt.col) | aS(fmt.row)) | op().interface()
All of these searches are ordered by incoming links btw
typeSearch("Lyrics")
typeSearch("Category")
typeSearch("Template")
typeSearch("User")
typeSearch("User talk")
typeSearch("Touhou Wiki")
types() | cut(1) | op().split(":")[0].all() | count() | ~sort() | ~head(7) | cut(1)\
| apply(fmt.h, level=3) & apply(aS(lambda type_: types() | grep(f"^{type_}:", col=1)) | ~apply(lambda x,y: f"<a style='white-space: nowrap' href='{x}'>{y}</a>") | batched(10, True) | apply(fmt.col) | aS(fmt.row)) | transpose() | viz.Carousel(searchMode=2)
Replay
Template talk
Genre
Re
Category talk
Touhou Wiki talk
"Activity" Case
Toho Warfare
Touhou Angband
MediaWiki
List by Song
Help
Koumajou Densetsu II
ANOMALOUS
Koumajou Densetsu
Touhou Spell Bubble/Story/Reimu Arc
Function
Touhou Kobuto V
Shoot the Bullet
EXCEPTIONAL
Touhou Love Stories
Touhou Splinter Cell Code
THIRD ENSEMBLE
Toho Jazz Sessions type
AmazingEXStage-If case
Touhou Mecha
lumière ambrée
幻想特区 Re
REQUIEM Re
Elysion II
user
ELECTRiC Re
Phantasmal Junction Side-A
Am1
Absolute Zero
ミドリ
Delusional Makai
GREAT Re
FLEETS
Aggressive Maidens Re
Musou Kakyou
Eclat
Pieces of Antinomy Mind Side-B
COLLECTiVE
Calm
GENSOU
Birth of Twitter Tohobu
Karm
Glassy
ALICE
Wind lord Type
AM
Ensemble of Gensokyo 3.5 - Re
Phantasmal Junction Side-C
Double Dealing Character
Art of Heart EP2
I Am Sakuya
Art of Heart EP1
DeZI
CtC Prequel
CtC Follow-up
CODE
Phantasmagoria of Flower View
SWRS-Silly Walker Re
Part Ten
From 9
Tears of Era
Part Eleven
Part Seven
Part Five
Suika in Hakurei Family
Fragments
File talk
VielE
秘封連作
【Re
Яe
Analyzing raw HTML¶
import bs4
parser = load() | grep("https://en.touhouwiki.net/wiki/Reimu_Hakurei", col=2) | item() | rItem(4) | aS(bs4.BeautifulSoup) | k1.Wrapper()
imgs = parser().find_all("img"); ps = parser().find_all("p")[:10]; ps
/home/kelvin/anaconda3/envs/ray2/lib/python3.9/site-packages/k1lib-1.5-py3.9.egg/k1lib/cli/modifier.py:74: GuessedAtParserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("lxml"). This usually isn't a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.
The code that caused this warning is on line 74 of the file /home/kelvin/anaconda3/envs/ray2/lib/python3.9/site-packages/k1lib-1.5-py3.9.egg/k1lib/cli/modifier.py. To get rid of this warning, pass the additional argument 'features="lxml"' to the BeautifulSoup constructor.
return self._fC(it, *self.args, **self.kwargs) # applyS
[<p><a href="/wiki/Human" title="Human">Human</a> </p>, <p>Ability to Float<br/>Aura Manipulation<br/>Powers as the <a href="/wiki/Shrine_Maiden" title="Shrine Maiden">Shrine Maiden</a> of <a href="/wiki/Hakurei_Shrine" title="Hakurei Shrine">Hakurei</a> </p>, <p><a href="/wiki/Shrine_Maiden" title="Shrine Maiden">Shrine Maiden</a> of <a href="/wiki/Hakurei_Shrine" title="Hakurei Shrine">Hakurei</a> </p>, <p><a href="/wiki/Hakurei_Shrine" title="Hakurei Shrine">Hakurei Shrine</a> </p>, <p style="margin:2em;font-style: italic;">"Out of the generations of shrine maidens, her sense of danger is the most lacking and she has meager training, yet her power is considerable."<br/>— <span style="font-variant:small-caps;font-style:normal;"><a href="/wiki/Hieda_no_Akyuu" title="Hieda no Akyuu">Hieda no Akyuu</a> <span style="vertical-align:super;font-size:75%;font-variant:normal;">(<a href="/wiki/Perfect_Memento_in_Strict_Sense" title="Perfect Memento in Strict Sense">Perfect Memento in Strict Sense</a>)</span></span></p>, <p><b>Reimu Hakurei</b><span style="font-weight: normal"> (<span class="t_nihongo_kanji" lang="ja">博麗 霊夢</span><span class="t_nihongo_comma" style="display:none">,</span> <i>Hakurei Reimu</i>)</span> is the main protagonist of the <i><a href="/wiki/Touhou_Project" title="Touhou Project">Touhou Project</a></i> series along with the deuteragonist, <a href="/wiki/Marisa_Kirisame" title="Marisa Kirisame">Marisa Kirisame</a>. As the <a class="mw-redirect" href="/wiki/Shrine_maiden" title="Shrine maiden">shrine maiden</a> of the <a href="/wiki/Hakurei_Shrine" title="Hakurei Shrine">Hakurei Shrine</a>, she manages the <a class="mw-redirect" href="/wiki/Hakurei_Border" title="Hakurei Border">Hakurei Border</a> of <a href="/wiki/Gensokyo" title="Gensokyo">Gensokyo</a> and exterminates troublesome <a href="/wiki/Youkai" title="Youkai">youkai</a>. </p>, <p>Reimu Hakurei's personality is typified by her desires, such as the desire to be wanted, to have good food, and to find happiness. Her biggest internal conflict comes from balancing her duties as the Hakurei shrine maiden and her own desires, though she does not seem to prefer acknowledging many of her internal conflicts. </p>, <p>Her duty as the shrine maiden gives Reimu a sense of purpose and identity, however, it conflicts with her desires in that it distances her from others and has her dealing with incidents and other related problems on a frequent basis. Despite her duty making it seem as though she antagonizes youkai, in truth, she wishes for peace between humans and youkai. </p>, <p>Reimu is generally a joyful and airheaded person. She’s also incredibly prideful and quite arrogant due to it. She’s often seen in a good mood until her routines are broken by some outside influence, be it a youkai or the like. She is quick to anger, but she’s also quick to forget. </p>, <p>While many inhabitants of <a href="/wiki/Gensokyo" title="Gensokyo">Gensokyo</a> are capable of flying, Reimu's ability extends beyond that; she is someone who excels at floating through <i>life</i>, displaying a level of oneness with her surroundings that has been compared to a <a href="/wiki/Hermit" title="Hermit">hermit</a>. While she "goes with the flow" Reimu displays superhuman instincts and incredible luck, naturally ending up on the path of least resistance through most situations; conversely, when distracted or acting with impure motives she quickly loses her edge.<sup class="reference" id="cite_ref-2"><a href="#cite_note-2">[2]</a></sup> On one occasion observers saw Reimu dodging an attack "like she was made of air" while Reimu herself saw the attack swerving to avoid her;<sup class="reference" id="cite_ref-3"><a href="#cite_note-3">[3]</a></sup> on another Reimu unknowingly walked across a river without getting wet, by stepping on fish that swam beneath her feet.<sup class="reference" id="cite_ref-4"><a href="#cite_note-4">[4]</a></sup> This also makes Reimu's techniques extremely hard for <a href="/wiki/Marisa_Kirisame" title="Marisa Kirisame">Marisa Kirisame</a> to learn from, since even Reimu herself has trouble explaining what she's doing. The ultimate expression of this ability is <i>Innate Dream</i>, which allows Reimu to float away from reality and become impossible to attack; this was considered too powerful for use as a <a href="/wiki/Spell_card" title="Spell card">spell card</a> until Marisa gave it a name and time limit.<sup class="reference" id="cite_ref-5"><a href="#cite_note-5">[5]</a></sup> </p>]
ps[1] | deref()
['Ability to Float', [], 'Aura Manipulation', [], 'Powers as the ', ['Shrine Maiden'], ' of ', ['Hakurei'], '\n']
imgs[0].attrs
{'alt': 'Reimu Hakurei',
'src': '/images/thumb/2/24/Th19Reimu.png/229px-Th19Reimu.png',
'decoding': 'async',
'width': '229',
'height': '220',
'srcset': '/images/thumb/2/24/Th19Reimu.png/343px-Th19Reimu.png 1.5x, /images/thumb/2/24/Th19Reimu.png/458px-Th19Reimu.png 2x'}
Ok nice, analyzing raw HTML is possible afterall.
Grabbing all Stories¶
stories = load() | grep("/Story/", col=2) | ~cut(4, 5) | deref() | k1.Wrapper()
stories() | shape() & display(5) | deref()
ok 1701593176.8761551 https://en.touhouwiki.net/wiki/Double_Dealing_Character/Story/Sakuya_A%27s_Scenario Double Dealing Character/Story/Sakuya A's Scenario - Touhou Wiki - Characters, games, locations, and more 151 5070 ok 1701593180.0771418 https://en.touhouwiki.net/wiki/Double_Dealing_Character/Story/Sakuya_B%27s_Scenario Double Dealing Character/Story/Sakuya B's Scenario - Touhou Wiki - Characters, games, locations, and more 163 5288 ok 1701593180.5966969 https://en.touhouwiki.net/wiki/Double_Dealing_Character/Story/Reimu_A%27s_Scenario Double Dealing Character/Story/Reimu A's Scenario - Touhou Wiki - Characters, games, locations, and more 165 5301 ok 1701593180.9519565 https://en.touhouwiki.net/wiki/Double_Dealing_Character/Story/Sakuya_A%27s_Extra Double Dealing Character/Story/Sakuya A's Extra - Touhou Wiki - Characters, games, locations, and more 166 5303 ok 1701593185.2317383 https://en.touhouwiki.net/wiki/Double_Dealing_Character/Story/Reimu_A%27s_Extra Double Dealing Character/Story/Reimu A's Extra - Touhou Wiki - Characters, games, locations, and more 183 5744
[(926, 6, 2), None]
All games?
load() | grep("/Story/", col=2) | ~cut(4, 5) | cut(2) | op().split("/Story/")[0].split("/wiki/")[-1].all() | count() | ~sort() | batched(15, True) | pretty().all() | transpose(fill="") | display(None)
53 Touhou_Soccer_Moushuuden 6% 14 Elegant_Impermanence_of_Sakura 2% 10 Kioh_Gyoku 1% 7 Embodiment_of_Scarlet_Devil 1% 4 Touhou_Spell_Bubble 0% 2 Fairy_Wars 0% 1 Talk:Touhou_Hisoutensoku 0% 45 Moedan 5% 14 Undefined_Fantastic_Object 2% 10 Hidden_Star_in_Four_Seasons 1% 7 Project_Beril 1% 4 Talk:Phantasmagoria_of_Flower_View 0% 2 Touhou_Gouyoku_Ibun 0% 1 Talk:Undefined_Fantastic_Object 0% 42 Bubbling_Imaginary_Treasures 5% 14 Over_the_Developed_Eden 2% 10 Ten_Desires 1% 6 Mountain_of_Faith 1% 3 Story_of_Eastern_Wonderland 0% 2 Talk:Immaterial_and_Missing_Power 0% 1 The_Perfect_Maid 0% 38 Frantically_Forbidden_Fruit 4% 13 Talk:Urban_Legend_in_Limbo 1% 10 Phantasmagoria_of_Dim.Dream 1% 6 Book_of_Star_Mythology 1% 3 Talk:Imperishable_Night 0% 2 Talk:Scarlet_Weather_Rhapsody 0% 1 Talk:Ten_Desires 0% 37 Unfinished_Dream_of_All_Living_Ghost 4% 13 Riverbed_Soul_Saver 1% 10 Unconnected_Marketeers 1% 6 The_Alternative_Age 1% 3 Talk:Mountain_of_Faith 0% 2 Unification_of_the_Artful_Rain 0% 1 Talk:Phantasmagoria_of_Dim.Dream 0% 33 Phantasmagoria_of_Flower_View 4% 13 The_Shattered_Sky 1% 9 Banshiryuu 1% 6 Mystical_Power_Plant 1% 3 Talk:Embodiment_of_Scarlet_Devil 0% 2 Touhou_Luna_Nights 0% 1 Youkai_Kori_Kassen 0% 32 Scarlet_Weather_Rhapsody 3% 11 Fan-made_Virtual_Autography 1% 9 Perfect_Cherry_Blossom 1% 6 Glory_of_Deep_Skies 1% 3 Talk:Perfect_Cherry_Blossom 0% 2 Record_Of_Ice_Fairy_War 0% 1 Touhou_Rekkaden 0% 31 Urban_Legend_in_Limbo 3% 11 Hopeless_Masquerade 1% 9 Mystic_Square 1% 6 Ultimate_Vitality_of_Imagination 1% 3 Talk:Subterranean_Animism 0% 2 Talk:Story_of_Eastern_Wonderland 0% 1 Talk:The_Alternative_Age 0% 30 Antinomy_of_Common_Flowers 3% 11 White_Names_Spoiled_Past 1% 9 The_Last_Comer 1% 6 Abyss_Soul_Lotus 1% 3 Little_Doll_Queen 0% 2 Blue_Devil_in_the_Belvedere 0% 1 Talk:Mystical_Power_Plant 0% 23 Immaterial_and_Missing_Power 2% 11 Marine_Benefit 1% 9 Shining_Shooting_Star 1% 5 Shuusou_Gyoku 1% 3 Terminus_of_Unreal_Darkside 0% 2 Mrs._Estacion 0% 1 Treasure_Castle_Labyrinth 0% 21 Wily_Beast_and_Weakest_Creature 2% 11 Wonderful_Battle_Dreamer 1% 9 Infinite_Blade_Pavilion 1% 5 Lotus_Land_Story 1% 3 Talk:Hopeless_Masquerade 0% 2 Talk:Concealed_the_Conclusion 0% 17 Imperishable_Night 2% 11 Servants_of_Harvest_Wish 1% 8 Sunken_Fossil_World 1% 5 Re.Phantasmagoria_of_Imagine_Breaker 1% 3 Chaos_of_Black_Loong 0% 1 100th_Black_Market 0% 16 Sapphire_Panlogism 2% 11 The_Genius_of_Sappheiros 1% 8 Dream_Logical_World 1% 5 Impossible_Spell_Card 1% 2 Malice_Eater 0% 1 Samidare 0% 15 Double_Dealing_Character 2% 10 Legacy_of_Lunatic_Kingdom 1% 8 Wonderful_Waking_World 1% 4 Great_Fairy_Wars 0% 2 Consciousness%27_Unity_of_Opposites 0% 1 Violet_Detector 0% 15 Subterranean_Animism 2% 10 Concealed_the_Conclusion 1% 8 Fantastic_Danmaku_Festival 1% 4 Touhou_Hisoutensoku 0% 2 Talk:Double_Dealing_Character 0% 1 Talk:Antinomy_of_Common_Flowers 0%
load() | grep("/Story/", col=2) | ~cut(4, 5) | cut(2) | op().split("/Story/")[-1].replace("%27", "'").all() | count() | ~sort() | batched(30, True) | pretty().all() | transpose(fill=True) | display(None)
56 Prologue 6% 3 Yukari's_Script 0% 2 Marisa_B's_Extra 0% 2 Reimu_and_Aya's_Scenario 0% 1 Doremy's_Script 0% 1 Komachi_and_Tenshi's_Bad_Ending 0% 1 Sanae_B's_Extra 0% 1 Reimu's_Scenario_(Wolf) 0% 1 Chiyuri's_Scenario 0% 1 Marisa_and_Shiragiku's_Extra 0% 1 Reisen's_Legacy_Extra 0% 1 Spell_Card_1 0% 1 Youmu's_Paradise_Ending 0% 1 Phantom_Story 0% 1 Character_Dialogue/OpponentGK 0% 1 Character_Dialogue/Elrich 0% 1 Area5 0% 1 Komachi_and_Eiki's_Good_Ending 0% 40 Reimu's_Scenario 4% 3 Kokoro's_Script 0% 2 Reimu_B's_Scenario 0% 2 Marisa_and_Patchouli's_Extra 0% 1 Meiling's_Script 0% 1 Marisa_and_Okina's_Bad_Ending 0% 1 Sanae_B's_Scenario 0% 1 Reimu's_Scenario_(Eagle) 0% 1 Kana's_Scenario 0% 1 Sanae_and_Minayu's_Scenario_-_Part_1 0% 1 Youmu's_Paradise_Extra 0% 1 Spell_Card_2 0% 1 Reimu's_Paradise_Ending 0% 1 Shinmyoumaru's_Phantom 0% 1 Character_Dialogue/AlicePC98 0% 1 Character_Dialogue/Patchouli 0% 1 TestArea 0% 1 Rumia_and_Mystia's_Scenario/Match_01 0% 37 Marisa's_Scenario 4% 3 Ichirin's_Script 0% 2 Mokou's_Script 0% 2 Marisa_and_Nitori's_Scenario 0% 1 Iku's_Script 0% 1 Reisen's_Legacy_Scenario 0% 1 Sanae_A's_Scenario 0% 1 Reimu's_Extra_(Otter) 0% 1 Yuuka's_Extra 0% 1 Reimu_and_Tokubi's_Scenario_-_Part_2 0% 1 Sakuya's_Paradise_Extra 0% 1 Spell_Card_21 0% 1 Reisen's_Bad_Ending 0% 1 Marisa's_Phantom 0% 1 Character_Dialogue/Kotohime 0% 1 Character_Dialogue/DaiyouseiGK 0% 1 Rumia_and_Mystia's_Scenario 0% True 29 Extra_Story 3% 3 Futo's_Scenario 0% 2 Tenshi's_Script 0% 2 Marisa_and_Patchouli's_Scenario 0% 1 Iku's_Scenario 0% 1 Marisa_and_Cirno's_Scenario 0% 1 Aunn's_Scenario 0% 1 Youmu's_Scenario_(Wolf) 0% 1 Kotohime's_Scenario 0% 1 Sanae_and_Minayu's_Scenario_-_Part_2 0% 1 Reisen's_Paradise_Extra 0% 1 Spell_Card_13 0% 1 Youmu's_Legacy_Ending 0% 1 Shinmyoumaru's_Extra 0% 1 Character_Dialogue/Tewi 0% 1 Character_Dialogue/Daiyousei 0% 1 Spell_Card_23 0% True 22 Reimu's_Extra 2% 3 Miko's_Scenario 0% 2 Byakuren's_Script 0% 2 Extra_epilogue 0% 1 Reisen's_Extra 0% 1 Marisa_and_Cirno's_Extra 0% 1 Reimu's_Scenario_(Demo) 0% 1 Marisa's_Scenario_(Eagle) 0% 1 Mima's_Extra 0% 1 Marisa_and_Shiragiku's_Scenario_-_Part_2 0% 1 Marisa's_Legacy_Extra 0% 1 Spell_Card_27 0% 1 Reisen's_Legacy_Ending 0% 1 Reimu's_Phantom 0% 1 Character_Dialogue/MimaGK 0% 1 Character_Dialogue/Jack 0% 1 Spell_Card_28 0% True 21 Marisa's_Extra 2% 3 Futo's_Script 0% 2 Tenshi's_Scenario 0% 2 Ran's_Scenario 0% 1 Flandre's_Scenario 0% 1 Komachi_and_Eiki's_Extra 0% 1 Seiran's_Scenario_(Demo) 0% 1 Marisa's_Scenario_(Otter) 0% 1 Demo_Afterword 0% 1 Reimu_and_Tokubi's_Extra 0% 1 Yuuka's_Legacy_Scenario 0% 1 Spell_Card_16 0% 1 Reisen's_Paradise_Ending 0% 1 Sumireko's_Phantom 0% 1 Character_Dialogue/Keine 0% 1 Aya's_Scenario/Match_03 0% 1 Spell_Card_29 0% True 12 Sanae's_Scenario 1% 3 Miko's_Script 0% 2 Koishi's_Script 0% 2 Sanae's_Script 0% 1 Yuuma's_Scenario 0% 1 Komachi_and_Kasen's_Extra 0% 1 Nazrin's_Scenario_(Demo) 0% 1 Marisa's_Scenario_(Wolf) 0% 1 Scarlet_Team's_Scenario_1 0% 1 Scenario_C 0% 1 Sanae's_Legacy_Extra 0% 1 Spell_Card_43 0% 1 Sanae's_Paradise_Ending 0% 1 Reimu_and_Utsuho's_Scenario 0% 1 Character_Dialogue/KoakumaGK 0% 1 Special_Stage 0% 1 Marisa_and_Okina's_Good_Ending 0% True 9 Sanae's_Extra 1% 3 Kasen's_Script 0% 2 Shinmyoumaru's_Script 0% 2 Aya's_Extra 0% 1 Minamitsu's_Scenario 0% 1 Marisa_and_Yuyuko's_Good_Ending 0% 1 Chiyari's_Scenario 0% 1 Youmu's_Extra_(Wolf) 0% 1 VIVIT-r's_Bad_Ending_(C74-only) 0% 1 Scenario_B 0% 1 Yuuka's_Paradise_Extra 0% 1 False_Ending 0% 1 Marisa's_Paradise_Ending 0% 1 Satono_and_Mai's_Scenario 0% 1 Alice's_Scenario/Match_02 0% 1 Bamboo_Forest 0% 1 Reimu_and_Shinmyoumaru's_Bad_Ending 0% True 8 Marisa's_Script 1% 3 Youmu's_Script 0% 2 Nitori's_Script 0% 2 Barrier_Team's_Extra 0% 1 Joon_and_Shion's_Scenario 0% 1 Sanae_and_Aya's_Bad_Ending 0% 1 Tsukasa's_Scenario 0% 1 Youmu's_Extra_(Otter) 0% 1 Hirano's_C74_Extra 0% 1 Scenario_A 0% 1 Yuuka's_Legacy_Extra 0% 1 Spell_Card_15 0% 1 Marisa's_Legacy_Ending 0% 1 Reimu_Arc:_Forest_of_Magic 0% 1 Alice's_Scenario/Match_05 0% 1 Kourindou 0% 1 Sanae_and_Aya's_Scenario 0% True 8 Reimu's_Script 1% 3 Alice's_Scenario 0% 2 Yuyuko's_Script 0% 2 Scarlet_Team's_Scenario 0% 1 Kasen's_Scenario 0% 1 Komachi_and_Eiki's_Scenario 0% 1 Nazrin's_Script 0% 1 Youmu's_Scenario_(Eagle) 0% 1 Hirano's_Bad_Ending_(C74-only) 0% 1 Part_Two 0% 1 Team_Miraculous's_Scenario 0% 1 Spell_Card_8 0% 1 Staff_Roll 0% 1 Reimu_Arc:_Youkai_Mountain 0% 1 Character_Dialogue/Lunasa 0% 1 Garden_of_Sun 0% 1 Marisa's_Carrefour 0% True 8 Sakuya's_Scenario 1% 3 Patchouli's_Scenario 0% 2 Patchouli's_Script 0% 2 Magic_Team's_Extra 0% 1 Mokou's_Scenario 0% 1 Sanae_and_Suwako's_Bad_Ending 0% 1 Nazrin's_Scenario 0% 1 Youmu's_Extra_(Eagle) 0% 1 Hirano's_Scenario_(C67_version) 0% 1 Scenario_D 0% 1 Team_Magician's_Scenario 0% 1 Spell_Card_42 0% 1 Glossary 0% 1 Reimu_Arc:_Scarlet_Devil_Mansion 0% 1 Alice's_Scenario/Prologue 0% 1 Scarlet_Devil_Mansion 0% 1 Hecatia's_Carrefour 0% True 7 Reisen's_Scenario 1% 3 Demo_Scenario 0% 2 Alice's_Script 0% 2 Youmu's_Extra 0% 1 Route_C 0% 1 Komachi_and_Kasen's_Bad_Ending 0% 1 Yachie's_Scenario 0% 1 Marisa's_Extra_(Wolf) 0% 1 VIVIT-r's_Scenario_(C67_version) 0% 1 Marisa's_Scenario_ 0% 1 Team_Imagine's_Scenario 0% 1 Spell_Card_40 0% 1 Day_1 0% 1 Reimu_Arc:_Hakurei_Shrine 0% 1 Character_Dialogue/Rumia 0% 1 Youkai_Mountain_and_Youkai_Mountain_Peak 0% 1 Shou's_Good_Ending 0% True 6 Youmu's_Scenario 1% 3 Kokoro's_Scenario 0% 2 Suika's_Scenario 0% 2 Tewi's_Scenario 0% 1 Route_B 0% 1 Sumireko's_Ending 0% 1 Hisami's_Scenario 0% 1 Marisa's_Extra_(Otter) 0% 1 VIVIT-r's_C74_Extra 0% 1 Boundary_Team's_Extra 0% 1 Sanae's_Bad_Ending 0% 1 Spell_Card_31 0% 1 Day_2 0% 1 omake.txt 0% 1 Character_Dialogue/Lily_White 0% 1 Eientei_Inner_Part 0% 1 Shou's_Carrefour_Ending 0% True 5 Yukari's_Scenario 1% 3 Byakuren's_Scenario 0% 2 Suika's_Script 0% 2 Yuuka's_Script 0% 1 Main_Scenario 0% 1 Komachi_and_Tenshi's_Good_Ending 0% 1 Aunn's_Scenario_(Demo) 0% 1 Reimu's_Extra_(Wolf) 0% 1 VIVIT-r's_C74_Ending 0% 1 Ghost_Team's_Extra 0% 1 Other 0% 1 Spell_Card_45 0% 1 Day_4 0% 1 Ryouko's_Extra 0% 1 Character_Dialogue/Sakuya 0% 1 Hell 0% 1 Hecatia's_Good_Ending 0% True 5 Sumireko's_Scenario 1% 3 Koishi's_Scenario 0% 2 Remilia's_Script 0% 2 Medicine's_Script 0% 1 Reimu's_Ending 0% 1 Marisa_and_Alice's_Good_Ending 0% 1 Ran's_Script 0% 1 Reimu's_Extra_(Eagle) 0% 1 Hirano's_C74_Ending 0% 1 Ghost_Team's_Scenario_1 0% 1 Spell_Card_50 0% 1 Spell_Card_34 0% 1 Day_3 0% 1 Ryouko's_Scenario 0% 1 Character_Dialogue/Chen 0% 1 Myouren 0% 1 Reimu_and_Utsuho's_Extra 0% True 5 Reisen's_Script 1% 3 Extra 0% 2 Yuyuko's_Scenario 0% 2 Yuuka's_Scenario 0% 1 Mokou_and_Keine's_Good_Ending 0% 1 Marisa_and_Alice's_Bad_Ending 0% 1 Rin's_Scenario 0% 1 Youmu's_Scenario_(Otter) 0% 1 Scarlet_Team's_Scenario_2 0% 1 Greedy_Challenge 0% 1 Spell_Card_47 0% 1 Spell_Card_30 0% 1 Marisa's_VS_Script 0% 1 Vinca's_Scenario 0% 1 Character_Dialogue/VIVIT 0% 1 Palace_of_Earth_Spirits 0% 1 Aya's_Endings 0% True 5 Aya's_Scenario 1% 3 Cirno's_Scenario 0% 2 Remilia's_Scenario 0% 2 Extra_Stage 0% 1 Komachi_and_Tenshi's_Extra 0% 1 Youmu's_Paradise_Scenario 0% 1 Saki's_Scenario 0% 1 Marisa's_Extra_(Eagle) 0% 1 Morgan's_Script 0% 1 Futo_and_Miko's_Phantasm 0% 1 Spell_Card_12 0% 1 Spell_Card_48 0% 1 Hisami's_VS_Script 0% 1 Byakuren_and_Miko's_Extra 0% 1 Character_Dialogue/Reimu 0% 1 Hieda's_house 0% 1 Youmu's_Bad_Ending 0% True 5 Reimu_and_Yukari's_Extra 1% 3 Reimu_and_Yukari's_Good_Ending 0% 2 Aya's_Script 0% 2 Regular_Stages 0% 1 Youmu's_Legacy_Scenario 0% 1 Sanae_and_Kanako's_Bad_Ending 0% 1 Aunn's_Script 0% 1 Mystia's_Script 0% 1 Marie's_Script 0% 1 Reimu_and_Yukari's_Phantasm 0% 1 Spell_Card_41 0% 1 Spell_Card_44 0% 1 Sanae's_VS_Script 0% 1 Reimu_and_Marisa's_Extra 0% 1 Character_Dialogue/Marisa 0% 1 Netherworld 0% 1 Youmu's_Good_Ending 0% True 4 Mamizou's_Script 0% 3 Dialogue 0% 2 Komachi's_Script 0% 2 Mima's_Scenario 0% 1 Reimu_and_Suika's_Bad_Ending 0% 1 Sanae's_Paradise_Scenario 0% 1 Marisa's_Scenario_(Demo) 0% 1 Eiki's_Script 0% 1 Milia's_Script 0% 1 Futo_and_Miko's_Extra 0% 1 Spell_Card_18 0% 1 Spell_Card_39 0% 1 Seiran's_VS_Script 0% 1 Satori_and_Koishi's_Scenario 0% 1 Character_Dialogue/Medicine 0% 1 True_Ending 0% 1 Reimu's_Extra_Ending 0% True 4 Nitori's_Scenario 0% 3 Medicine's_Scenario 0% 2 Kanako's_Scenario 0% 2 Phantasm 0% 1 Omake.txt 0% 1 Shigure's_Scenario 0% 1 Hisami's_Script 0% 1 Lunasa's_Script 0% 1 Gates'_Script 0% 1 Marisa's_Extras 0% 1 Spell_Card_7 0% 1 Spell_Card_14 0% 1 Zanmu's_VS_Script 0% 1 Sakuya_and_Meiling's_Extra 0% 1 Character_Dialogue/China 0% 1 Hong_Meiling's_Story_Mode 0% 1 Byakuren_and_Miko's_Scenario 0% True 4 Sumireko's_Script 0% 3 Extra_Scenario 0% 2 Ichirin's_Scenario 0% 2 Sanae's_Good_Ending 0% 1 Sakuya's_Legacy_Extra 0% 1 Marisa_and_Yuyuko's_Bad_Ending 0% 1 Seiran's_Script 0% 1 Lyrica's_Scenario 0% 1 Mei_and_Mai's_Script 0% 1 Reimu's_Extras 0% 1 Spell_Card_26 0% 1 Spell_Card_46 0% 1 Ran's_VS_Script 0% 1 Reimu_and_Utsuho's_Good_Ending 0% 1 Aya's_Scenario/Match_04 0% 1 Futo_and_Miko's_Good_Ending 0% 1 Character_Dialogue/Mai 0% True 4 Mamizou's_Scenario 0% 3 Sakuya's_Extra 0% 2 Shinmyoumaru's_Scenario 0% 2 Reimu_and_Shinmyoumaru's_Scenario 0% 1 Reisen's_Paradise_Scenario 0% 1 Sakuya's_Legacy_Scenario 0% 1 Biten's_Scenario 0% 1 Lyrica's_Script 0% 1 Muse's_Script 0% 1 Descent_Team's_Scenario 0% 1 Spell_Card_24 0% 1 Spell_Card_38 0% 1 Reimu's_Phantasm 0% 1 Character_Dialogue/KaguyaGK 0% 1 Character_Dialogue/Udonge 0% 1 Futo_and_Miko's_Bad_Ending 0% 1 Character_Dialogue/Mystia 0% True 4 Sakuya's_Script 0% 3 Ending 0% 2 Route_A 0% 2 Reimu_and_Shinmyoumaru's_Extra 0% 1 Marisa's_Ending 0% 1 Komachi_and_Eiki's_Bad_Ending 0% 1 Zanmu's_Script 0% 1 Tewi's_Script 0% 1 Erich's_Script 0% 1 Aesthetic_Team's_Scenario 0% 1 Spell_Card_49 0% 1 Spell_Card_19 0% 1 Marisa's_Phantasm 0% 1 Character_Dialogue/Lily_Black 0% 1 Character_Dialogue 0% 1 Marisa_and_Byakuren's_Good_Ending 0% 1 Character_Dialogue/Chiyuri 0% True 4 Komachi's_Scenario 0% 3 Endings 0% 2 Meiling's_Scenario 0% 2 Reimu_and_Shinmyoumaru's_Good_Ending 0% 1 Komachi_and_Tenshi's_Scenario 0% 1 Sakuya's_Paradise_Scenario 0% 1 Cirno's_Extra 0% 1 Merlin's_Script 0% 1 VIVIT's_Script 0% 1 Principle_Team's_Scenario 0% 1 Spell_Card_10 0% 1 Spell_Card_17 0% 1 Sanae's_Heaven 0% 1 Character_Dialogue/Ran 0% 1 Character_Dialogue/Kana 0% 1 Marisa_and_Patchouli's_Phantasm 0% 1 Youmu's_Legacy_Extra 0% True 4 Reimu_and_Yukari's_Scenario 0% 3 Afterword 0% 2 Sumireko's_Extra 0% 1 Sakuya_A's_Scenario 0% 1 Sanae_and_Aya's_Extra 0% 1 Sanae's_Legacy_Scenario 0% 1 Seiran's_Scenario 0% 1 Eiki's_Scenario 0% 1 Magic_Team's_Scenario_1 0% 1 Language_Team's_Scenario 0% 1 Spell_Card_37 0% 1 Mokou_and_Keine's_Extra 0% 1 Sanae's_Phantasm 0% 1 Character_Dialogue/Genji 0% 1 Alice's_Scenario/Match_03 0% 1 Futo_and_Miko's_Scenario 0% 1 Team_Lightning's_Scenario 0% True 4 Marisa's_Bad_Ending 0% 3 Reimu's_Good_Ending 0% 2 Reimu_and_Yukari's_Bad_Ending 0% 1 Sakuya_B's_Scenario 0% 1 Marisa_and_Cirno's_Bad_Ending 0% 1 Barrier_Team's_Scenario 0% 1 Netherworld_Team's_Scenario 0% 1 Cirno's_Script 0% 1 Boundary_Team's_Scenario_1 0% 1 Reimu's_Legacy_Scenario 0% 1 Spell_Card_4 0% 1 Marisa_and_Yuyuko's_Extra 0% 1 Reimu's_Heaven 0% 1 Character_Dialogue/Koakuma 0% 1 Character_Dialogue/Eirin 0% 1 Value_Team's_Scenario 0% 1 Spell_Card_22 0% True 4 Reimu's_Bad_Ending 0% 3 Marisa's_Good_Ending 0% 2 Marisa_and_Alice's_Extra 0% 1 Sakuya_A's_Extra 0% 1 Sanae_and_Suwako's_Good_Ending 0% 1 Reimu_and_Suika's_Scenario 0% 1 Magic_Team's_Scenario 0% 1 Mystia's_Scenario 0% 1 Pre-Extra 0% 1 Reimu's_Paradise_Extra 0% 1 Spell_Card_11 0% 1 Mokou_and_Keine's_Scenario 0% 1 Marisa's_Heaven 0% 1 Character_Dialogue/Lily_WhiteGK 0% 1 Character_Dialogue/Mima 0% 1 Descent_Team's_Ending 0% 1 Sanae_and_Kanako's_Scenario 0% True 3 Reimu_A's_Scenario 0% 2 Reimu_A's_Extra 0% 2 Marisa_and_Alice's_Scenario 0% 1 Sakuya_B's_Extra 0% 1 Reimu_and_Suika's_Good_Ending 0% 1 Reimu_and_Aya's_Extra 0% 1 Netherworld_Team's_Extra 0% 1 Yumemi's_Scenario 0% 1 Reimu_and_Tokubi's_Scenario_-_Part_1 0% 1 Yuuka's_Paradise_Scenario 0% 1 Spell_Card_9 0% 1 Marisa_and_Yuyuko's_Scenario 0% 1 Hecatia's_Extra 0% 1 Character_Dialogue/Letty 0% 1 Character_Dialogue/Flan 0% 1 Area2 0% 1 Koishi's_Extra 0% True 3 Marisa_B's_Scenario 0% 2 Marisa_A's_Scenario 0% 2 Marisa_and_Okina's_Extra 0% 1 Joon's_Script 0% 1 Marisa_and_Okina's_Scenario 0% 1 Marisa_and_Nitori's_Extra 0% 1 Scarlet_Team's_Extra 0% 1 Ellen's_Scenario 0% 1 Marisa_and_Shiragiku's_Scenario_-_Part_1 0% 1 Marisa's_Paradise_Scenario 0% 1 Spell_Card_6 0% 1 Sanae_and_Kanako's_Extra 0% 1 Shou's_Scenario 0% 1 Character_Dialogue/Merlin 0% 1 Character_Dialogue/Hakurei_Miko 0% 1 Trialversion 0% 1 Shou's_Extra 0% True 3 Reimu_B's_Extra 0% 2 Marisa_A's_Extra 0% 2 Reimu_and_Suika's_Extra 0% 1 Joon's_Scenario 0% 1 Marisa's_Legacy_Scenario 0% 1 Sanae_A's_Extra 0% 1 Reimu's_Scenario_(Otter) 0% 1 Rikako's_Scenario 0% 1 Sanae_and_Minayu's_Extra 0% 1 Marisa's_Paradise_Extra 0% 1 Spell_Card_35 0% 1 Sanae_and_Suwako's_Extra 0% 1 Hecatia's_Scenario 0% 1 Aya's_Scenario/Match_02 0% 1 Character_Dialogue/Elly 0% 1 Area4 0% 1 Reimu's_Carrefour 0% True
My actual real goal is to grab all songs ("BGM") from all characters, so that I can enjoy Touhou to the fullest. So let's see if we can extract out for EoSD:
eosd = load() | grep("/Embodiment_of_Scarlet_Devil/Story/", col=2) | ~cut(5) | deref() | k1.Wrapper()
eosd() | ~cut(4) | display()
ok 1701593465.2320697 https://en.touhouwiki.net/wiki/Embodiment_of_Scarlet_Devil/Story/Reimu%27s_Scenario Embodiment of Scarlet Devil/Story/Reimu's Scenario - Touhou Wiki - Characters, games, locations, and more 1227 14781 ok 1701593465.537989 https://en.touhouwiki.net/wiki/Embodiment_of_Scarlet_Devil/Story/Prologue Embodiment of Scarlet Devil/Story/Prologue - Touhou Wiki - Characters, games, locations, and more 1228 14793 ok 1701593469.7953072 https://en.touhouwiki.net/wiki/Embodiment_of_Scarlet_Devil/Story/Marisa%27s_Extra Embodiment of Scarlet Devil/Story/Marisa's Extra - Touhou Wiki - Characters, games, locations, and more 1249 14953 ok 1701593470.775528 https://en.touhouwiki.net/wiki/Embodiment_of_Scarlet_Devil/Story/Extra_Story Embodiment of Scarlet Devil/Story/Extra Story - Touhou Wiki - Characters, games, locations, and more 1253 14973 ok 1701593470.977668 https://en.touhouwiki.net/wiki/Embodiment_of_Scarlet_Devil/Story/Reimu%27s_Extra Embodiment of Scarlet Devil/Story/Reimu's Extra - Touhou Wiki - Characters, games, locations, and more 1254 14976 ok 1701593472.4146953 https://en.touhouwiki.net/wiki/Embodiment_of_Scarlet_Devil/Story/Marisa%27s_Scenario Embodiment of Scarlet Devil/Story/Marisa's Scenario - Touhou Wiki - Characters, games, locations, and more 1259 14991 ok 1701595464.0775259 https://en.touhouwiki.net/wiki/Embodiment_of_Scarlet_Devil/Story/Afterword Embodiment of Scarlet Devil/Afterword - Touhou Wiki - Characters, games, locations, and more 8157 47609
Ok nice.
eosd() | cut(4) | item() | op().replace("</", "\n</").split("\n") | grep("BGM") | headOut(None)
<p><span lang="en">BGM: <p>BGM: A Soul as Scarlet as a Ground Cherry <p><span lang="en">BGM: <p>BGM: Apparitions Stalk the Night <p><span lang="en">BGM: <p>BGM: Lunate Elf <p><span lang="en">BGM: <p>BGM: Tomboyish Girl in Love <p><span lang="en">BGM: <p>BGM: Shanghai Scarlet Teahouse ~ Chinese Tea <p><span lang="en">BGM: <p>BGM: Shanghai Alice of Meiji 17<sup id="cite_ref-5" class="reference"><a href="#cite_note-5">[5] <p><span lang="en">BGM: <p>BGM: Voile, the Magic Library <p><span lang="en">BGM: <p>BGM: Locked Girl ~ The Girl's Sealed Room <p><span lang="en">BGM: <p>BGM: The Maid and the Pocket Watch of Blood <p><span lang="en">BGM: <p>BGM: Lunar Clock ~ Luna Dial <p><span lang="en">BGM: <p>BGM: The Young Descendent of Tepes <sup id="cite_ref-8" class="reference"><a href="#cite_note-8">[8] <p><span lang="en">BGM: <p>BGM: Septette for a Dead Princess <sup id="cite_ref-9" class="reference"><a href="#cite_note-9">[9]
eosd() | cut(4) | item() | op().replace("</", "\n</").split("\n") | grep("BGM", before=20, after=20, sep=True) | filt(op().strip()).all() | deref() | aS(str).all(2) | apply(apply(html.escape) | join("\n") | aS(fmt.pre)) | join("-"*100) | viz.Scroll()
<th style="width:45%" lang="ja"> <p>夢幻夜行絵巻 ~ <span lang="en">Mystic Flier </span> </p> </th> <th style="width:55%"> <p>Fantastic <a href="https://en.wikipedia.org/wiki/Hyakki_Yagyo#In_art" class="extiw" title="wikipedia:Hyakki Yagyo">Night Parade Scroll </a> ~ Mystic Flier </p> </th> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p><span lang="en">BGM: </span> ほおずきみたいに紅い魂 </p> </th> <th style="width:55%">----------------------------------------------------------------------------------------------------
<p>BGM: A Soul as Scarlet as a Ground Cherry </p> </th> </tr> <tr> <th style="word-wrap: nowrap"> <p>Reimu </p> </th> <td lang="ja" width="45%"> <p>久々のお仕事だわ。<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1] </a> </sup> </p> </td>----------------------------------------------------------------------------------------------------
</th> <td lang="ja" width="45%"> <p>で、邪魔なんですけど </p> </td> <td width="55%"> <p>You know, you're in my way. </p> </td> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p><span lang="en">BGM: </span> 妖魔夜行 </p> </th> <th style="width:55%">----------------------------------------------------------------------------------------------------
<p>BGM: Apparitions Stalk the Night </p> </th> </tr> <tr> <th style="word-wrap: nowrap"> <p>Rumia </p> </th> <td lang="ja" width="45%"> <p>目の前が取って食べれる人類? </p> </td> <td width="55%"> <p>Is the person in front of me the edible kind?----------------------------------------------------------------------------------------------------
</th> <th style="width:45%" lang="ja"> <p>湖上の魔精 ~ <span lang="en">Water Magus </span> </p> </th> <th style="width:55%"> <p>Nixie on the Lake ~ Water Magus </p> </th> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p><span lang="en">BGM: </span> ルーネイトエルフ </p> </th> <th style="width:55%">----------------------------------------------------------------------------------------------------
<p>BGM: Lunate Elf </p> </th> </tr> <tr> <th> </th> <th colspan="2"> <p><a href="/wiki/Daiyousei" title="Daiyousei">Daiyousei </a> ENTERS </p> </th> </tr> <tr> <th>----------------------------------------------------------------------------------------------------
</td> </tr> <tr> <th> </th> <th colspan="2"> <p><a href="/wiki/Cirno" title="Cirno">Cirno </a> ENTERS </p> </th> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p><span lang="en">BGM: </span> おてんば恋娘 </p> </th> <th style="width:55%">----------------------------------------------------------------------------------------------------
<p>BGM: Tomboyish Girl in Love </p> </th> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p>湖上の氷精<br>チルノ </p> </th> <th style="width:55%"> <p>Ice Fairy of the Lake<br><a href="/wiki/Cirno" title="Cirno">Cirno </a> </p>----------------------------------------------------------------------------------------------------
</th> <th style="width:45%" lang="ja"> <p>紅色の境 ~ <span lang="en">Scarlet Land </span> </p> </th> <th style="width:55%"> <p>Scarlet Border ~ Scarlet Land </p> </th> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p><span lang="en">BGM: </span> 上海紅茶館 ~ <span lang="en">Chinese Tea </span> </p> </th> <th style="width:55%">----------------------------------------------------------------------------------------------------
<p>BGM: Shanghai Scarlet Teahouse ~ Chinese Tea </p> </th> </tr> <tr> <th> </th> <th colspan="2"> <p><a href="/wiki/Hong_Meiling" title="Hong Meiling">Hong Meiling </a> ENTERS </p> </th> </tr> <tr> <th style="word-wrap: nowrap"> <p>???----------------------------------------------------------------------------------------------------
</th> <td lang="ja" width="45%"> <p>それはよかった<br>たしか... </p> </td> <td width="55%"> <p>That's good to hear.<br>If I remember correctly... </p> </td> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p><span lang="en">BGM: </span> 明治十七年の上海アリス </p> </th> <th style="width:55%">----------------------------------------------------------------------------------------------------
<p>BGM: Shanghai Alice of Meiji 17<sup id="cite_ref-5" class="reference"><a href="#cite_note-5">[5] </a> </sup> </p> </th> </tr> <tr> <th style="word-wrap: nowrap"> <p>Meiling </p> </th> <td lang="ja" width="45%"> <p>巫女は食べてもいい人類だって<br>言い伝えが... </p> </td>----------------------------------------------------------------------------------------------------
</th> <th style="width:45%" lang="ja"> <p>暗闇の館 ~ <span lang="en">Save the mind. </span> </p> </th> <th style="width:55%"> <p>Mansion of Darkness ~ Save the Mind </p> </th> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p><span lang="en">BGM: </span> ヴワル魔法図書館 </p> </th> <th style="width:55%">----------------------------------------------------------------------------------------------------
<p>BGM: Voile, the Magic Library </p> </th> </tr> <tr> <th> </th> <th colspan="2"> <p><a href="/wiki/Koakuma" title="Koakuma">Koakuma </a> ENTERS </p> </th> </tr> <tr> <th>----------------------------------------------------------------------------------------------------
</td> </tr> <tr> <th> </th> <th colspan="2"> <p><a href="/wiki/Patchouli_Knowledge" title="Patchouli Knowledge">Patchouli Knowledge </a> ENTERS </p> </th> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p><span lang="en">BGM: </span> ラクトガール ~ 少女密室 </p> </th> <th style="width:55%">----------------------------------------------------------------------------------------------------
<p>BGM: Locked Girl ~ The Girl's Sealed Room </p> </th> </tr> <tr> <th style="word-wrap: nowrap"> <p>??? </p> </th> <td lang="ja" width="45%"> <p>そこの紅白! </p><p>私の書斎で暴れない </p> </td>----------------------------------------------------------------------------------------------------
</th> <th style="width:45%" lang="ja"> <p>紅い月に瀟洒な従者を </p> </th> <th style="width:55%"> <p>An Elegant Servant for the Scarlet Moon </p> </th> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p><span lang="en">BGM: </span> メイドと血の懐中時計 </p> </th> <th style="width:55%">----------------------------------------------------------------------------------------------------
<p>BGM: The Maid and the Pocket Watch of Blood </p> </th> </tr> <tr> <th> </th> <th colspan="2"> <p><a href="/wiki/Sakuya_Izayoi" title="Sakuya Izayoi">Sakuya Izayoi </a> ENTERS </p> </th> </tr> <tr> <th style="word-wrap: nowrap"> <p>???----------------------------------------------------------------------------------------------------
</th> <td lang="ja" width="45%"> <p>もう十分騒がしいわ </p> </td> <td width="55%"> <p>You've already caused enough. </p> </td> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p><span lang="en">BGM: </span> 月時計 ~ ルナ・ダイアル </p> </th> <th style="width:55%">----------------------------------------------------------------------------------------------------
<p>BGM: Lunar Clock ~ Luna Dial </p> </th> </tr> <tr> <th style="word-wrap: nowrap"> <p>Sakuya </p> </th> <td lang="ja" width="45%"> <p>でも、あなたはお嬢様には<br>会えない </p><p>それこそ、時間を止めてでも<br>時間稼ぎが出来るから </p> </td>----------------------------------------------------------------------------------------------------
<th style="width:45%" lang="ja"> <p>エリュシオンに血の雨 </p> </th> <th style="width:55%"> <p>Rain of Blood over Elysium <sup id="cite_ref-7" class="reference"><a href="#cite_note-7">[7] </a> </sup> </p> </th> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p><span lang="en">BGM: </span> ツェペシュの幼き末裔 </p> </th> <th style="width:55%">----------------------------------------------------------------------------------------------------
<p>BGM: The Young Descendent of Tepes <sup id="cite_ref-8" class="reference"><a href="#cite_note-8">[8] </a> </sup> </p> </th> </tr> <tr> <th> </th> <th colspan="2"> <p><a href="/wiki/Sakuya_Izayoi" title="Sakuya Izayoi">Sakuya Izayoi </a> ENTERS </p> </th> </tr> <tr>----------------------------------------------------------------------------------------------------
</th> <td lang="ja" width="45%"> <p>あなたはつよいの? </p> </td> <td width="55%"> <p>Are <i>you </i> strong? </p> </td> </tr> <tr> <th> </th> <th style="width:45%" lang="ja"> <p><span lang="en">BGM: </span> 亡き王女の為のセプテット </p> </th> <th style="width:55%">----------------------------------------------------------------------------------------------------
<p>BGM: Septette for a Dead Princess <sup id="cite_ref-9" class="reference"><a href="#cite_note-9">[9] </a> </sup> </p> </th> </tr> <tr> <th style="word-wrap: nowrap"> <p>Remilia </p> </th> <td lang="ja" width="45%"> <p>さあね。<br>あんまり外に出して貰えないの </p><p>私が日光に弱いから </p>
Not as cleanly as I'd hope. Oh well, it's possible anyway. So let's grab all BGM from all games:
#notest
with k1.ignoreWarnings():
load() | grep("/Story/", col=2) | tee().autoInc() | cut(2, 4)\
| apply(lambda x: [x.split("/Story/")[0].split("/")[-1], x.split("/Story/")[1].split("/")[0].replace("%27", "'")], 0)\
| applyMp(iden() + (aS(bs4.BeautifulSoup) | op().find_all("p") | grep("BGM") | op().text.strip().all()) | deref(), bs=10, prefetch=10) | deref() | aS(dill.dumps) | file("bgm.pth")
925) 925, 7s elapsed
bgm = cat.pickle("bgm.pth") | item() | k1.Wrapper(); _regs = set() | k1.Wrapper()
def reg(bgm:str): # to remove redundant songs
if bgm in _regs(): return None
_regs().add(bgm); return bgm
# bgm() | apply(apply(reg) | filt("x"), 1) | deref() | filt(len, 1) | ~apply(lambda x,y: fmt.h(f"{x} - {y}", 3), 0) | apply(apply(html.escape) | join("\n") | aS(fmt.pre), 1) | viz.Carousel(searchMode=2)
bgm() | filt(len, 1) | ~apply(lambda x,y: fmt.h(f"{x} - {y}", 3), 0) | apply(apply(html.escape) | join("\n") | aS(fmt.pre), 1) | viz.Carousel(searchMode=2)
Double_Dealing_Character - Sakuya_A's_Scenario
BGM: ミストレイク BGM: Mist Lake BGM: 秘境のマーメイド BGM: Mermaid from the Uncharted Land BGM: 運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM: 柳の下のデュラハン BGM: Dullahan Under the Willows BGM: 満月の竹林 BGM: Bamboo Forest of the Full Moon BGM: 孤独なウェアウルフ BGM: Lonesome Werewolf BGM: マジカルストーム BGM: Magical Storm BGM: 幻想浄瑠璃 BGM: Illusionary Joururi BGM: 空中に沈む輝針城 BGM: The Shining Needle Castle Sinking in the Air BGM: リバースイデオロギー BGM: Reverse Ideology BGM: 針小棒大の天守閣 BGM: The Exaggerated Castle Keep BGM: 輝く針の小人族 ~ Little Princess BGM: Inchling of the Shining Needle ~ Little Princess
Double_Dealing_Character - Sakuya_B's_Scenario
BGM: ミストレイク BGM: Mist Lake BGM: 秘境のマーメイド BGM: Mermaid from the Uncharted Land BGM: 運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM: 柳の下のデュラハン BGM: Dullahan Under the Willows BGM: 満月の竹林 BGM: Bamboo Forest of the Full Moon BGM: 孤独なウェアウルフ BGM: Lonesome Werewolf BGM: マジカルストーム BGM: Magical Storm BGM: 幻想浄瑠璃 BGM: Illusionary Joururi BGM: 空中に沈む輝針城 BGM: The Shining Needle Castle Sinking in the Air BGM: リバースイデオロギー BGM: Reverse Ideology BGM: 針小棒大の天守閣 BGM: The Exaggerated Castle Keep BGM: 輝く針の小人族 ~ Little Princess BGM: Inchling of the Shining Needle ~ Little Princess
Double_Dealing_Character - Reimu_A's_Scenario
BGM: ミストレイク BGM: Mist Lake BGM: 秘境のマーメイド BGM: Mermaid from the Uncharted Land BGM: 運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM: 柳の下のデュラハン BGM: Dullahan Under the Willows BGM: 満月の竹林 BGM: Bamboo Forest of the Full Moon BGM: 孤独なウェアウルフ BGM: Lonesome Werewolf BGM: マジカルストーム BGM: Magical Storm BGM: 幻想浄瑠璃 BGM: Illusionary Joururi BGM: 空中に沈む輝針城 BGM: The Shining Needle Castle Sinking in the Air BGM: リバースイデオロギー BGM: Reverse Ideology BGM: 針小棒大の天守閣 BGM: The Exaggerated Castle Keep BGM: 輝く針の小人族 ~ Little Princess BGM: Inchling of the Shining Needle ~ Little Princess
Double_Dealing_Character - Sakuya_A's_Extra
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
Double_Dealing_Character - Reimu_A's_Extra
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
Double_Dealing_Character - Marisa_A's_Scenario
BGM: ミストレイク BGM: Mist Lake BGM: 秘境のマーメイド BGM: Mermaid from the Uncharted Land BGM: 運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM: 柳の下のデュラハン BGM: Dullahan Under the Willows BGM: 満月の竹林 BGM: Bamboo Forest of the Full Moon BGM: 孤独なウェアウルフ BGM: Lonesome Werewolf BGM: マジカルストーム BGM: Magical Storm BGM: 幻想浄瑠璃 BGM: Illusionary Joururi BGM: 空中に沈む輝針城 BGM: The Shining Needle Castle Sinking in the Air BGM: リバースイデオロギー BGM: Reverse Ideology BGM: 針小棒大の天守閣 BGM: The Exaggerated Castle Keep BGM: 輝く針の小人族 ~ Little Princess BGM: Inchling of the Shining Needle ~ Little Princess
Double_Dealing_Character - Marisa_A's_Extra
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
Double_Dealing_Character - Marisa_B's_Extra
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
Double_Dealing_Character - Marisa_B's_Scenario
BGM: ミストレイク BGM: Mist Lake BGM: 秘境のマーメイド BGM: Mermaid from the Uncharted Land BGM: 運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM: 柳の下のデュラハン BGM: Dullahan Under the Willows BGM: 満月の竹林 BGM: Bamboo Forest of the Full Moon BGM: 孤独なウェアウルフ BGM: Lonesome Werewolf BGM: マジカルストーム BGM: Magical Storm BGM: 幻想浄瑠璃 BGM: Illusionary Joururi BGM: 空中に沈む輝針城 BGM: The Shining Needle Castle Sinking in the Air BGM: リバースイデオロギー BGM: Reverse Ideology BGM: 針小棒大の天守閣 BGM: The Exaggerated Castle Keep BGM: 輝く針の小人族 ~ Little Princess BGM: Inchling of the Shining Needle ~ Little Princess
Double_Dealing_Character - Reimu_B's_Extra
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
Double_Dealing_Character - Sakuya_B's_Extra
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
Double_Dealing_Character - Reimu_B's_Scenario
BGM: ミストレイク BGM: Mist Lake BGM: 秘境のマーメイド BGM: Mermaid from the Uncharted Land BGM: 運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM: 柳の下のデュラハン BGM: Dullahan Under the Willows BGM: 満月の竹林 BGM: Bamboo Forest of the Full Moon BGM: 孤独なウェアウルフ BGM: Lonesome Werewolf BGM: マジカルストーム BGM: Magical Storm BGM: 幻想浄瑠璃 BGM: Illusionary Joururi BGM: 空中に沈む輝針城 BGM: The Shining Needle Castle Sinking in the Air BGM: リバースイデオロギー BGM: Reverse Ideology BGM: 針小棒大の天守閣 BGM: The Exaggerated Castle Keep BGM: 輝く針の小人族 ~ Little Princess BGM: Inchling of the Shining Needle ~ Little Princess
Antinomy_of_Common_Flowers - Yukari's_Scenario
BGM: 開演間近 BGM:The Curtain Shall Rise Soon BGM: 今宵は飄逸なエゴイスト(Live ver) ~ Egoistic Flowers. BGM:Tonight Stars an Easygoing Egoist (Live ver) ~ Egoistic Flowers BGM: 今宵は飄逸なエゴイスト(Live ver) ~ Egoistic Flowers. BGM:Tonight Stars an Easygoing Egoist (Live ver) ~ Egoistic Flowers
Antinomy_of_Common_Flowers - Marisa's_Scenario
BGM: 壮言大語 BGM:Grandiloquence BGM: 聖輦船空を往く BGM: The Palanquin Ship Flies in the Sky BGM: 連帯責人 BGM: The One Jointly Responsible BGM: 沢の河童の技術力 BGM:The Ravine Kappa's Technological Prowess BGM: 憑依投合 BGM: Being Things Eye to Eye BGM: 地の色は黄色 ~ Primrose BGM: The Ground's Color is Yellow ~ Primrose BGM: 知略縦横 BGM: Scheming Outside the Box BGM: 憑坐は夢と現の間に ~ Necro-Fantasia BGM: Yorimashi Between Dreams and Reality ~ Necro-Fantasia BGM: 開演間近 BGM: The Curtain Shall Rise Soon BGM stops
Antinomy_of_Common_Flowers - Sumireko's_Scenario
BGM: 知略縦横 BGM:Scheming Outside the Box BGM Stops BGM: 夢世界フォークロア BGM:Dream World Folklore BGM: 連帯責人 BGM Stops BGM: オカルトアトラクト BGM:Occult Atract BGM: 壮言大語 BGM:Grandiloquence BGM: スリープシープ・パレード BGM:Sleep Sheep Parade BGM: 意気揚々 BGM:In High Spirits BGM: 憑坐は夢と現の間に ~ Necro-Fantasia BGM:Yorimashi Between Dreams and Reality ~ Necro-Fantasia BGM: 夢世界フォークロア BGM:Dream World Folklore BGM Stops BGM: アンノウンX ~ Occultly Madness BGM:Unknown X ~ Occultly Madness
Antinomy_of_Common_Flowers - Joon's_Scenario
BGM: 憑依投合 BGM:Being Things Eye to Eye BGM: マッシュルームワルツ BGM: Mushroom Waltz BGM: 壮言大語 BGM:Grandiloquence BGM: 深緑の狸森にて BGM:In the Deep-Green Tanuki Forest BGM: 合縁奇縁 BGM:An Odd Couple BGM: 光輝く天球儀 BGM:Shining Armillary Sphere BGM: 異心同体 BGM:Two Minds of One Body BGM: 法力の下の平等 BGM:Equality Under the Law of Dharma BGM: 意気揚々 BGM:In High Spirits BGM Stops BGM: 知略縦横 BGM:Scheming Outside the Box BGM: 千の試練を超えて BGM:Overcome a Thousand Trials BGM: 天衣無縫 ~ Yellow Lily BGM:Flawless as Clothing of the Celestials ~ Yellow Lily BGM: アンノウンX ~ Occultly Madness BGM:Unknown X ~ Occultly Madness
Antinomy_of_Common_Flowers - Nitori's_Scenario
BGM: 連帯責人 BGM: The One Jointly Responsible BGM: 恒常不変の参廟祀 BGM: Constant and Unchanging Temple of Worship BGM: 合縁奇縁 BGM: An Odd Couple BGM: 聖輦船空を往く BGM: The Palanquin Ship Flies in the Sky BGM: 意気揚々 BGM: In High Spirits BGM: 落日に映える逆さ城 BGM: The Inverted Castle Lit by the Setting Sun BGM: 知略縦横 BGM: Scheming Outside the Box BGM: 夢世界フォークロア BGM: Dream World Folklore BGM: 壮言大語 BGM: Grandiloquence BGM: 天衣無縫 ~ Yellow Lily BGM: Flawless as Clothing of the Celestials ~ Yellow Lily BGM: アンノウンX ~ Occultly Madness BGM: Unknown X ~ Occultly Madness
Antinomy_of_Common_Flowers - Futo's_Scenario
BGM: 憑依投合 BGM:Being Things Eye to Eye BGM: 落日に映える逆さ城 BGM:The Inverted Castle Lit by the Setting Sun BGM: 壮言大語 BGM:Grandiloquence BGM: 不滅のレッドソウル BGM:Immortal Red Soul BGM: 知略縦横 BGM:Scheming Outside the Box BGM: スリープシープ・パレード BGM:Sleep Sheep Parade BGM: 異心同体 BGM:Two Minds of One Body BGM: 地の色は黄色 ~ Primrose BGM:The Ground's Color is Yellow ~ Primrose BGM: アンノウンX ~ Occultly Madness BGM:Unknown X ~ Occultly Madness
Antinomy_of_Common_Flowers - Tenshi's_Scenario
BGM: 異心同体 BGM:Two Minds of One Body BGM: 至る有頂天 BGM:Bhavaagra as Far as the Eye Can See BGM: 連帯責人 BGM:The One Jointly Responsible BGM: 心綺楼演舞 BGM:Shinkirou Theatrical BGM: 壮言大語 BGM:Grandiloquence BGM: 落日に映える逆さ城 BGM:The Inverted Castle Lit by the Setting Sun BGM: 開演間近 BGM:The Curtain Shall Rise Soon BGM: 千の試練を超えて BGM:Overcoime a Thousand Trials BGM: 知略縦横 BGM:Scheming Outside the Box BGM: 天衣無縫 ~ Yellow Lily BGM:Flawless as Clothing of the Celestials ~ Yellow Lily BGM: 憑坐は夢と現の間に ~ Necro-Fantasia
Antinomy_of_Common_Flowers - Miko's_Scenario
BGM: 憑依投合 BGM:Being Things Eye to Eye BGM: 地底に咲く薔薇 BGM:A Rose Blooming in the Underworld BGM: 合縁奇縁 BGM:An Odd Couple BGM: 心綺楼演舞 BGM:Shinkirou Theatrical BGM: 意気揚々 BGM:In High Spirits BGM: 落日に映える逆さ城 BGM:The Inverted Castle Lit by the Setting Sun BGM: 知略縦横 BGM: 憑坐は夢と現の間に ~ Necro-Fantasia BGM:Yorimashi Between Dreams and Reality ~ Necro-Fantasia BGM: 開演間近 BGM:The Curtain Shall Rise Soon BGM: 今宵は飄逸なエゴイスト(Live ver) ~ Egoistic Flowers. BGM:Tonight Stars an Easygoing Egoist (Live ver) ~ Egoistic Flowers
Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM: 異心同体 BGM: Two Minds of One Body BGM: マッシュルーム・ワルツ BGM: Mushroom Waltz BGM: 合縁奇縁 BGM:An Odd Couple BGM: 法力の下の平等 BGM:Equality Under the Law of Dharma BGM: 意気揚々 BGM: In High Spirits BGM: 永遠に続く回廊 BGM: Corridor Stretching to Eternity BGM: 知略縦横 BGM: Scheming Outside the Box BGM: 憑坐は夢と現の間に ~ Necro-Fantasia BGM: Yorimashi Between Dreams and Reality ~ Necro-Fantasia BGM: 開演間近 BGM: The Curtain Shall Rise Soon BGM Stops BGM: 今宵は飄逸なエゴイスト(Live ver) ~ Egoistic Flowers. BGM:Tonight Stars an Easygoing Egoist (Live ver) ~ Egoistic Flowers
Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM: 連帯責人 BGM:The One Jointly Responsible BGM Stops BGM: ネオ竹林インフレイム BGM:Neo Bamboo Forest in Flames BGM: 異心同体 BGM:Two Minds of One Body BGM: 億万劫の鐘 BGM:Bell of Aeons BGM: 意気揚々 BGM:In High Spirits BGM: オカルトアトラクト BGM:Occult Attract BGM: 開演間近 BGM:The Curtain Shall Rise Soon BGM: アンノウンX ~ Occultly Madness BGM:Unknown X ~ Occultly Madness
Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: 憑依投合 BGM:Being Things Eye To Eye BGM: 地の色は黄色 ~ Primrose BGM: The Ground's Color is Yellow ~ Primrose BGM: 連帯責人 BGM: The One Jointly Responsible BGM: 不滅のレッドソウル BGM:Immortal Red Soul BGM: 合縁奇縁 BGM: An Odd Couple BGM: 光輝く天球儀 BGM: Shining Armillary Sphere BGM: 知略縦横 BGM: Scheming Outside the Box BGM: 憑坐は夢と現の間に ~ Necro-Fantasia BGM: Yorimashi Between Dreams and Reality ~ Necro-Fantasia
Immaterial_and_Missing_Power - Reimu's_Scenario
BGM: 幽境 BGM: Solitary Place BGM: 恋色マジック BGM: Love-coloured Magic BGM: 珍客 BGM: Unexpected Visitor BGM: ブクレシュティの人形師 BGM: The Doll Maker of Bucuresti BGM: 遍参 BGM: Wanderings BGM: 東方妖々夢 ~ Ancient Temple BGM: Eastern Ghostly Dream ~ Ancient Temple BGM: あゆのかぜ BGM: Eastern Wind BGM: メイドと血の懐中時計 BGM: The Maid and the Pocket Watch of Blood BGM: 戦迅 BGM: Swift Battle BGM: Demystify Feast BGM: Demystify Feast BGM: 遍参 BGM: Wanderings BGM: 戦迅 BGM: Swift Battle BGM: 夜が降りてくる ~ Evening Star BGM: Night Falls ~ Evening Star BGM: 砕月 BGM: Broken Moon BGM: 御伽の国の鬼が島 ~ Missing Power BGM: The Fabled Land of Onigashima ~ Missing Power[9]
Immaterial_and_Missing_Power - Marisa's_Scenario
BGM: 幽境 BGM: Solitary Place BGM: 人形裁判 BGM: Doll Judgement BGM: 禍機 BGM: Bad Omen BGM: メイドと血と懐中時計 BGM: The Maid and The Pocket Watch of Blood BGM: 珍客 BGM: Unexpected Visitor BGM: あゆのかぜ BGM: Eastern Wind BGM: ヴワル魔法図書館 BGM: Voile, the Magic Library BGM: 紅夜 BGM: Scarlet Night BGM: 亡き王女の為のセプテット BGM: Septette for the Dead Princess BGM: 遍参 BGM: Wanderings BGM: Demystify Feast BGM: Demystify Feast BGM: 遍参 BGM: Wanderings BGM: 戦迅 BGM: Swift Battle BGM: 夜が降りてくる ~ Evening Star BGM: Night Falls ~ Evening Star BGM: 砕月 BGM: Broken Moon BGM: 御伽の国の鬼が島 ~ Missing Power BGM: The Fabled Land of Onigashima ~ Missing Power[3]
Immaterial_and_Missing_Power - Alice's_Scenario
BGM: 幽境 BGM: Solitary Place BGM: 恋色マジック BGM: Love-Coloured Magic BGM: 禍機 BGM: Bad Omen BGM: 少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM: 遍参 BGM: Wanderings BGM: メイドと血と懐中時計 BGM: The Maid And The Pocket Watch Of Blood BGM: 珍客 BGM: Unexpected Visitor BGM: ヴワル魔法図書館 BGM: Voile, the Magic Library BGM: 東方妖々夢 ~ Ancient Temple BGM: Eastern Ghostly Dream ~ Ancient Temple BGM: Demystify Feast BGM: Demystify Feast BGM: 魔所 BGM: Demonic Place BGM: 仰空 BGM: Skygazer BGM: 夜が降りてくる ~ Evening Star BGM: Night Falls ~ Evening Star BGM: 砕月 BGM: Broken Moon BGM: 御伽の国の鬼が島 ~ Missing Power BGM: The Fabled Land of Onigashima ~ Missing Power[2]
Immaterial_and_Missing_Power - Patchouli's_Scenario
BGM: 珍客 BGM: Unexpected Visitor BGM: 魔女達の舞踏会 BGM: The Witches' Ball BGM: あゆのかぜ BGM: Eastern Wind BGM: ヴワル魔法図書館 BGM: Voile Magic Library BGM: 仰空 BGM: Skygazer BGM: ラクトガール~少女密室 BGM: Locked Girl ~ The Girl's Sealed Room BGM: 東方妖々夢 ~ Ancient Temple BGM: Eastern Ghostly Dream ~ Ancient Temple BGM: 広有射怪鳥事~Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM: 遍参 BGM: Wanderings BGM: Demystify Feast BGM: Demystify Feast BGM: 裏心 BGM: Inner Heart BGM: 戦迅 BGM: Swift Battle BGM: 夜が降りてくる ~ Evening Star BGM: Night Falls ~ Evening Star BGM: 砕月 BGM: Broken Moon BGM: 御伽の国の鬼が島 ~ Missing Power BGM: The Fabled Land of Onigashima ~ Missing Power[9]
Immaterial_and_Missing_Power - Sakuya's_Scenario
BGM: 禍機 BGM: Bad Omen BGM: 東方妖恋談 BGM: Eastern Mystic Love Consultation BGM: Intermezzo BGM: Intermezzo BGM: 人形裁判 BGM: Doll Judgement BGM: 遍参 BGM: Wanderings BGM: 魔女達の舞踏会 BGM: The Witches' Ball BGM: あゆのかぜ BGM: Eastern Wind BGM: 東方妖々夢 ~ Ancient Temple BGM: Eastern Ghostly Dream ~ Ancient Temple BGM: あゆのかぜ BGM: Eastern Wind BGM: 幽雅に咲かせ、墨染の桜~Border of Life BGM: Bloom Nobly, Ink-Black Cherry Blossom ~ Border of Life BGM: 禍機 BGM: Bad Omen BGM: 戦迅 BGM: Swift Battle BGM: 夜が降りてくる ~ Evening Star BGM: Night Falls ~ Evening Star BGM: 砕月 BGM: Broken Moon BGM: 御伽の国の鬼が島 ~ Missing Power BGM: The Fabled Land of Onigashima ~ Missing Power[10]
Immaterial_and_Missing_Power - Suika's_Scenario
BGM: あゆのかぜ BGM: Eastern Wind BGM: メイドと血の懐中時計 BGM: The Maid and the Pocket Watch of Blood BGM: 森閑 BGM: Silence BGM: ブクレシュティの人形師 BGM: Doll Maker of Bucuresti BGM: 紅夜 BGM: Scarlet Night BGM: 広有射怪鳥事~Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM: 魔所 BGM: Demonic Place BGM: ヴワル魔法図書館 BGM: Voile, the Magic Library BGM: 月輪 BGM: The Moon BGM: 遍参 BGM: Wanderings BGM: Demystify Feast BGM: Demystify Feast BGM: 魔所 BGM: Demonic Place BGM: 亡き王女の為のセプテット BGM: Septette for the Dead Princess BGM: 砕月 BGM: Broken Moon BGM: 御伽の国の鬼が島 ~ Missing Power BGM: The Fabled Land of Onigashima ~ Missing Power[1]
Immaterial_and_Missing_Power - Youmu's_Scenario
BGM: 禍機 BGM: Bad Omen BGM: 少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM: あゆのかぜ BGM: Eastern Wind BGM: 魔女達の舞踏会 BGM: The Witches' Ball BGM: 珍客 BGM: Unexpected Visitor BGM: ラクトガール~少女密室 BGM: Locked Girl ~ Girl's Sealed Room BGM: 遍参 BGM: Wanderings BGM: 月時計 ~ ルナ・ダイアル BGM: Lunar Clock ~ Lunar Dial BGM: 紅夜 BGM: Scarlet Night BGM: Demystify Feast BGM: Demystify Feast BGM: 裏心 BGM: Inner Heart BGM: 戦迅 BGM: Swift Battle BGM: 夜が降りてくる ~ Evening Star BGM: Night Falls ~ Evening Star BGM: 砕月 BGM: Broken Moon BGM: 御伽の国の鬼が島 ~ Missing Power BGM: The Fabled Land of Onigashima ~ Missing Power[6]
Immaterial_and_Missing_Power - Yuyuko's_Scenario
BGM: 幽境 BGM: Solitary Place BGM: 広有射怪鳥事~Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM: 禍機 BGM: Bad Omen BGM: 魔女達の舞踏会 BGM: The Witches' Ball BGM: 遍参 BGM: Wanderings BGM: 少女綺想曲 BGM: Maiden's Capriccio BGM: あゆのかぜ BGM: Eastern Wind BGM: メイドと血の懐中時計 BGM: The Maid and the Pocket Watch of Blood BGM: 魔所 BGM: Demonic Place BGM: Demystify Feast BGM: Demystify Feast BGM: 遍参 BGM: Wanderings BGM: 仰空 BGM: Skygazer BGM: 夜が降りてくる ~ Evening Star BGM: Night Falls ~ Evening Star BGM: 砕月 BGM: Broken Moon BGM: 御伽の国の鬼が島 ~ Missing Power BGM: The Fabled Land of Onigashima ~ Missing Power[15]
Immaterial_and_Missing_Power - Yukari's_Scenario
BGM: 仰空 BGM: Skygazer BGM: 亡き王女の為のセプテット BGM: Septette for the Dead Princess BGM: 珍客 BGM: Unexpected Visitor BGM: ブクレシュティの人形師 BGM: The Doll Maker of Bucresti BGM: 東方妖々夢 ~ Ancient Temple BGM: Eastern Ghostly Dream ~ Ancient Temple BGM: 広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM: 遍参 BGM: Wanderings BGM: 魔女達の舞踏会 BGM: The Witches' Ball BGM: 戦迅 BGM: Swift Battle BGM: 少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM: 仰空 BGM: Skygazer BGM: 夜が降りてくる ~ Evening Star BGM: Night Falls ~ Evening Star BGM: 砕月 BGM: Broken Moon BGM: 御伽の国の鬼が島 ~ Missing Power BGM: The Fabled Land of Onigashima ~ Missing Power[8]
Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: あゆのかぜ BGM: Eastern Wind BGM: メイドと血の懐中時計 BGM: The Maid and the Pocket Watch of Blood BGM: 紅夜 BGM: Scarlet Night BGM: 魔女達の舞踏会 BGM: The Witches' Ball BGM: 紅夜 BGM: Scarlet Night BGM: 少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM: 遍参 BGM: Wanderings BGM: 広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM: 幽雅に咲かせ、墨染の桜~Border of Life BGM: Bloom Nobly, Ink-Black Cherry Blossom ~ Border of Life BGM: 遍参 BGM: Wanderings BGM: 戦迅 BGM: Swift Battle BGM: 夜が降りてくる ~ Evening Star BGM: Night Falls ~ Evening Star BGM: 砕月 BGM: Broken Moon BGM: 御伽の国の鬼が島 ~ Missing Power BGM: The Fabled Land of Onigashima ~ Missing Power[3]
Scarlet_Weather_Rhapsody - Suika's_Scenario
BGM: 日常坐臥 BGM: Usual Days BGM: 風神少女 BGM: Wind God Girl BGM: 雲外蒼天 BGM: Skies Beyond the Clouds BGM: 黒い海に紅く ~ Legendary Fish BGM: Crimson in the Black Sea ~ Legendary Fish BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven BGM: 幼心地の有頂天 BGM: Bhavaagra As Seen Through a Child's Mind
Scarlet_Weather_Rhapsody - Reisen's_Scenario
BGM: 日常坐臥 BGM: Usual Days BGM: 亡き王女の為のセプテット BGM: Septette for the Dead Princess BGM: 放縦不羈 BGM: Free and Easy BGM: 幽雅に咲かせ、墨染の桜 ~ Border of Life BGM: Bloom Nobly, Ink-Black Cherry Blossom ~ Border of Life BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 夜が降りてくる BGM: Night Falls BGM: 日常坐臥 BGM: Usual Days BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven BGM: 幼心地の有頂天 BGM: Bhavaagra As Seen Through a Child's Mind
Scarlet_Weather_Rhapsody - Tenshi's_Scenario
BGM: 以魚駆蠅 BGM: Swing a Fish to Drive Away Flies BGM: 幽雅に咲かせ、墨染の桜 ~ Border of Life BGM: Bloom Nobly, Ink-Black Cherry Blossom ~ Border of Life BGM: 冷吟閑酔 BGM: Drunk as I Like BGM: 砕月 BGM: Broken Moon BGM: 日常坐臥 BGM: Usual Days BGM: ラクトガール ~ 少女密室 BGM: Locked Girl ~ Girl's Sealed Room BGM: 甲論乙駁 BGM: Argue for and Against BGM: ブクレシュティの人形師 BGM: The Doll Maker of Bucuresti BGM: 以魚駆蠅 BGM: Swing a Fish to Drive Away Flies BGM: 星の器 ~ Casket of Star BGM: Vessel of Stars ~ Casket of Star BGM: 風光明媚 BGM: Beautiful Nature Sight BGM: フラワリングナイト BGM: Flowering Night BGM: 日常坐臥 BGM: Usual Days BGM: 広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM: 風光明媚 BGM: Beautiful Nature Sight BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven
Scarlet_Weather_Rhapsody - Remilia's_Scenario
BGM: 以魚駆蠅 BGM: Swing a Fish to Drive Away Flies BGM: フラワリングナイト BGM: Flowering Night BGM: 甲論乙駁 BGM: Argue for and Against BGM: ラクトガール ~ 少女密室 BGM: Locked Girl ~ Girl's Sealed Room BGM: 放縦不羈 BGM: Free and Easy BGM: ブクレシュティの人形師 BGM: The Doll Maker of Bucuresti BGM: 以魚駆蠅 BGM: Swing a Fish to Drive Away Flies BGM: 狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM: 冷吟閑酔 BGM: Drunk as I Like BGM: 広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM: 雲外蒼天 BGM: Skies Beyond the Clouds BGM: 彼岸帰航 ~ Riverside View BGM: Higan Retour ~ Riverside View BGM: 放縦不羈 BGM: Free and Easy BGM: 東方妖恋談 BGM: Eastern Mystical Tale of Romance BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven
Scarlet_Weather_Rhapsody - Komachi's_Scenario
BGM: 以魚駆蠅 BGM: Swing a Fish to Drive Away Flies BGM: 星の器 ~ Casket of Star BGM: Vessel of Stars ~ Casket of Star BGM: 風光明媚 BGM: Beautiful Nature Sight BGM: フラワリングナイト BGM: Flowering Night BGM: 日常坐臥 BGM: Usual Days BGM: 広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 東方妖恋談 BGM: Eastern Mystical Tale of Romance BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven BGM: 幼心地の有頂天 BGM: Bhavaagra As Seen Through a Child's Mind
Scarlet_Weather_Rhapsody - Marisa's_Scenario
BGM: 地の色は黄色 BGM: The Ground's Colour is Yellow BGM: 日常坐臥 BGM: Usual Days BGM: 香る樹葉花 BGM: Fragrant Plants BGM: 踊る水飛沫 BGM: Dancing Water Spray BGM: 冷吟閑酔 BGM: Drunk as I Like BGM: 嘲りの遊戯 BGM: Ridiculous Game BGM: 雲外蒼天 BGM: Skies Beyond the Clouds BGM: 黒い海に紅く ~ Legendary Fish BGM: Crimson in the Black Sea ~ Legendary Fish BGM: 天衣無縫 BGM: Seamless Clothing of the Celestials BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven
Scarlet_Weather_Rhapsody - Reimu's_Scenario
BGM: 日常坐臥 BGM: Usual Days BGM: 地の色は黄色 BGM: The Ground's Color is Yellow BGM: 甲論乙駁 BGM: Argue For and Against BGM: 香る樹葉花 BGM: Fragrant Plants BGM: 踊る水飛沫 BGM: Dancing Water Spray BGM: 風光明媚 BGM: Beautiful Nature Sight BGM: 嘲りの遊戯 BGM: Ridiculous Game BGM: 雲外蒼天 BGM: Skies Beyond the Clouds BGM: 黒い海に紅く ~ Legendary Fish BGM: Crimson in the Black Sea ~ Legendary Fish BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven BGM: 幼心地の有頂天 BGM: Bhavaagra as Seen Through a Child's Mind
Scarlet_Weather_Rhapsody - Yuyuko's_Scenario
BGM: 日常坐臥 BGM: Usual Days BGM: 地の色は黄色 BGM: The Ground's Color is Yellow BGM: 冷吟閑酔 BGM: Drunk as I Like BGM: 香る樹葉花 BGM: Fragrant Plants BGM: 日常坐臥 BGM: Usual Days BGM: 踊る水飛沫 BGM: Dancing Water Spray BGM: 日常坐臥 BGM: Usual Days BGM: 嘲りの遊戯 BGM: Ridiculous Game BGM: 雲外蒼天 BGM: Skies Beyond the Clouds BGM: 黒い海に紅く ~ Legendary Fish BGM: Crimson in the Black Sea ~ Legendary Fish BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven BGM: 幼心地の有頂天 BGM: Bhavaagra As Seen Through a Child's Mind
Scarlet_Weather_Rhapsody - Aya's_Scenario
BGM: 以魚駆蠅 BGM: Swing a Fish to Drive Away Flies BGM: 東方妖恋談 BGM: Eastern Mystical Tale of Romance BGM: 甲論乙駁 BGM: Argue for and Against BGM: 星の器 ~ Casket of Star BGM: Vessel of Stars ~ Casket of Star BGM: 放縦不羈 BGM: Free and Easy BGM: フラワリングナイト BGM: Flowering Night BGM: 雲外蒼天 BGM: Skies Beyond the Clouds BGM: 亡き王女の為のセプテット BGM: Septette for the Dead Princess BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven
Scarlet_Weather_Rhapsody - Patchouli's_Scenario
BGM: フラワリングナイト BGM: Flowering Night BGM: 風光明媚 BGM: Beautiful Nature Sight BGM: 香る樹葉花 BGM: Fragrant Plants BGM: 踊る水飛沫 BGM: Dancing Water Spray BGM: 雲外蒼天 BGM: Skies Beyond the Clouds BGM: 黒い海に紅く ~ Legendary Fish BGM: Crimson in the Black Sea ~ Legendary Fish BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven BGM: 冷吟閑酔 BGM: Drunk as I Like BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven
Scarlet_Weather_Rhapsody - Youmu's_Scenario
BGM: 幽雅に咲かせ、墨染の桜 ~ Border of Life BGM: Bloom Nobly, Ink-Black Cherry Blossom ~ Border of Life BGM: 以魚駆蠅 BGM: Swing a Fish to Drive Away Flies BGM: 地の色は黄色 BGM: The Ground's Color is Yellow BGM: 日常坐臥 BGM: Usual Days BGM: 踊る水飛沫 BGM: Dancing Water Spray BGM: 香る樹葉花 BGM: Fragrant Plants BGM: 放縦不羈 BGM: Free and Easy BGM: 黒い海に紅く ~ Legendary Fish BGM: Crimson in the Black Sea ~ Legendary Fish BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven BGM: 幼心地の有頂天 BGM: Bhavaagra As Seen Through a Child's Mind
Scarlet_Weather_Rhapsody - Alice's_Scenario
BGM: 風光明媚 BGM: Beautiful Nature Sight BGM: 地の色は黄色 BGM: The Ground's Color is Yellow BGM: 冷吟閑酔 BGM: Drunk as I Like BGM: 広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM: ラクトガール ~ 少女密室 BGM: Locked Girl ~ Girl's Sealed Room BGM: フラワリングナイト BGM: Flowering Night BGM: 雲外蒼天 BGM: Skies Beyond the Clouds BGM: 黒い海に紅く ~ Legendary Fish BGM: Crimson in the Black Sea ~ Legendary Fish BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven BGM: 幼心地の有頂天 BGM: Bhavaagra As Seen Through a Child's Mind
Scarlet_Weather_Rhapsody - Sakuya's_Scenario
BGM: 日常坐臥 BGM: Usual Days BGM: 地の色は黄色 BGM: The Ground's Color is Yellow BGM: 風光明媚 BGM: Beautiful Nature Sight BGM: 踊る水飛沫 BGM: Dancing Water Spray BGM: 香る樹葉花 BGM: Fragrant Plants BGM: 日常坐臥 BGM: Usual Days BGM: 嘲りの遊戯 BGM: Ridiculous Game BGM: 雲外蒼天 BGM: Skies Beyond the Clouds BGM: 黒い海に紅く ~ Legendary Fish BGM: Crimson in the Black Sea ~ Legendary Fish BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven BGM: 幼心地の有頂天 BGM: Bhavaagra As Seen Through a Child's Mind
Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: 風光明媚 BGM: Beautiful Nature Sight BGM: 東方妖恋談 BGM: Eastern Mystical Tale of Romance BGM: 以魚駆蠅 BGM: Swing a Fish to Drive Away Flies BGM: 踊る水飛沫 BGM: Dancing Water Spray BGM: 冷吟閑酔 BGM: Drunk as I Like BGM: 星の器 ~ Casket of Star BGM: Vessel of Stars ~ Casket of Star BGM: 日常坐臥 BGM: Usual Days BGM: 黒い海に紅く ~ Legendary Fish BGM: Crimson in the Black Sea ~ Legendary Fish BGM: 日常坐臥 BGM: Usual Days BGM: 砕月 BGM: Broken Moon BGM: 天衣無縫 BGM: Flawless Clothing of the Celestials BGM: 夜が降りてくる BGM: Night Falls ~ Evening Star BGM: 有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven BGM: 幼心地の有頂天 BGM: Bhavaagra As Seen Through a Child's Mind
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario
BGM: 忘れがたき、よすがの緑 BGM: Unforgettable, the Nostalgic Greenery BGM: 兎は舞い降りた BGM: The Rabbit Has Landed BGM: 湖は浄めの月光を映して BGM: The Lake Reflects the Pure Moonlight BGM: 九月のパンプキン BGM: Pumpkin of September BGM: 宇宙を飛ぶ不思議な巫女 BGM: The Mysterious Shrine Maiden Flying Through Space BGM: 永遠の春夢 BGM: Eternal Spring Dream BGM: 凍り付いた永遠の都 BGM: Frozen Capital of Eternity BGM: 逆転するホイールオブフォーチュン BGM: Reversed Wheel of Fortune BGM: 遥か38万キロのボヤージュ BGM: Faraway Voyage of 380,000 Kilometers BGM: 星条旗のピエロ BGM: Pierrot of the Star-Spangled Banner BGM: 故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM: ピュアヒューリーズ ~ 心の在処 BGM: Pure Furies ~ Whereabouts of the Heart BGM: ピュアヒューリーズ ~ 心の在処 BGM: Pure Furies ~ Whereabouts of the Heart
Legacy_of_Lunatic_Kingdom - Reimu's_Extra
BGM: 見た事も無い悪夢の世界 BGM: A World of Nightmares Never Seen Before BGM: パンデモニックプラネット BGM: Pandemonic Planet
Legacy_of_Lunatic_Kingdom - Marisa's_Scenario
BGM: Unforgettable greenery BGM: Unforgettable, the Nostalgic Greenery BGM: The rabbit swooped down BGM: The Rabbit Has Landed BGM: The lake reflects the cleansing moonlight BGM: The Lake Reflects the Pure Moonlight BGM: 九月のパンプキン BGM: Pumpkin of September BGM: 宇宙を飛ぶ不思議な巫女 BGM: The Mysterious Shrine Maiden Flying Through Space BGM: 永遠の春夢 BGM: Eternal Spring Dream BGM: 凍り付いた永遠の都 BGM: Frozen Capital of Eternity BGM: 逆転するホイールオブフォーチュン BGM: Reversed Wheel of Fortune BGM: 遥か38万キロのボヤージュ BGM: Faraway Voyage of 380 000 Kilometers BGM: 星条旗のピエロ BGM: Pierrot of the Star-Spangled Banner BGM: 故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM: ピュアヒューリーズ ~ 心の在処 BGM: Pure Furies ~ Whereabouts of the Heart BGM: ピュアヒューリーズ ~ 心の在処 BGM: Pure Furies ~ Whereabouts of the Heart
Legacy_of_Lunatic_Kingdom - Reisen's_Extra
BGM: 見た事も無い悪夢の世界 BGM: A World of Nightmares Never Seen Before BGM: パンデモニックプラネット BGM: Pandemonic Planet
Legacy_of_Lunatic_Kingdom - Sanae's_Extra
BGM: 見た事も無い悪夢の世界 BGM: A World of Nightmares Never Seen Before BGM: パンデモニックプラネット BGM: Pandemonic Planet
Legacy_of_Lunatic_Kingdom - Marisa's_Extra
BGM: 見た事も無い悪夢の世界 BGM: A World of Nightmares Never Seen Before BGM: パンデモニックプラネット BGM: Pandemonic Planet
Legacy_of_Lunatic_Kingdom - Reimu's_Scenario
BGM: 忘れがたき、よすがの緑 BGM: Unforgettable, the Nostalgic Greenery BGM: 兎は舞い降りた BGM: The Rabbit Has Landed BGM: 湖は浄めの月光を映して BGM: The Lake Reflects the Pure Moonlight BGM: 九月のパンプキン BGM: Pumpkin of September BGM: 宇宙を飛ぶ不思議な巫女 BGM: The Mysterious Shrine Maiden Flying Through Space BGM: 永遠の春夢 BGM: Eternal Spring Dream BGM: 凍り付いた永遠の都 BGM: The Frozen Eternal Capital BGM: 逆転するホイールオブフォーチュン BGM: Reversed Wheel of Fortune BGM: 遥か38万キロのボヤージュ BGM: Faraway Voyage of 380,000 Kilometers BGM: 星条旗のピエロ BGM: Pierrot of the Star-Spangled Banner BGM: 故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM: ピュアヒューリーズ ~ 心の在処 BGM: Pure Furies ~ Whereabouts of the Heart BGM: ピュアヒューリーズ ~ 心の在処 BGM: Pure Furies ~ Whereabouts of the Heart
Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: 忘れがたき、よすがの緑 BGM: Unforgettable, the Nostalgic Greenery BGM: 兎は舞い降りた BGM: The Rabbit Has Landed BGM: 湖は浄めの月光を映して BGM: The Lake Reflects the Pure Moonlight BGM: 九月のパンプキン BGM: Pumpkin of September BGM: 宇宙を飛ぶ不思議な巫女 BGM: The Mysterious Shrine Maiden Flying Through Space BGM: 永遠の春夢 BGM: Eternal Spring Dream BGM: 凍り付いた永遠の都 BGM: Frozen Capital of Eternity BGM: 逆転するホイールオブフォーチュン BGM: Reversed Wheel of Fortune BGM: 遥か38万キロのボヤージュ BGM: Faraway Voyage of 380,000 Kilometers BGM: 星条旗のピエロ BGM: Pierrot of the Star-Spangled Banner BGM: 故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM: ピュアヒューリーズ ~ 心の在処 BGM: Pure Furies ~ Whereabouts of the Heart BGM: ピュアヒューリーズ ~ 心の在処 BGM: Pure Furies ~ Whereabouts of the Heart
Mountain_of_Faith - Marisa's_Extra
BGM: 明日ハレの日、ケの昨日 BGM: Tomorrow Will Be Special, Yesterday Was Not BGM: ネイティブフェイス BGM: Native Faith
Mountain_of_Faith - Reimu's_Extra
BGM: 明日ハレの日、ケの昨日 BGM: Tomorrow Will Be Special, Yesterday Was Not BGM: ネイティブフェイス BGM: Native Faith
Mountain_of_Faith - Marisa's_Scenario
BGM: 人恋し神様 ~ Romantic Fall BGM: A God That Misses People ~ Romantic Fall BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me BGM: 厄神様の通り道 ~ Dark Road BGM: The Road of the Misfortune God ~ Dark Road BGM: 運命のダークサイド BGM: Dark Side of Fate BGM: 神々が恋した幻想郷 BGM: The Gensokyo the Gods Loved BGM: 芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend [3] BGM: フォールオブフォール ~ 秋めく滝 BGM: Fall of Fall ~ Autumnal Waterfall BGM: 妖怪の山 ~ Mysterious Mountain BGM: Youkai Mountain ~ Mysterious Mountain BGM: 少女が見た日本の原風景 BGM: The Primal Scene of Japan the Girl Saw BGM: 信仰は儚き人間の為に BGM: Faith is for the Transient People BGM: 御柱の墓場 ~ Grave of Being BGM: Cemetery of Onbashira ~ Grave of Being BGM: 神さびた古戦場 ~ Suwa Foughten Field BGM: The Venerable Ancient Battlefield ~ Suwa Foughten Field
Mountain_of_Faith - Reimu's_Scenario
BGM: 人恋し神様 ~ Romantic Fall BGM: A God That Misses People ~ Romantic Fall BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me BGM: 厄神様の通り道 ~ Dark Road BGM: The Road of the Misfortune God ~ Dark Road BGM: 運命のダークサイド BGM: Dark Side of Fate BGM: 神々が恋した幻想郷 BGM: The Gensokyo the Gods Loved BGM: 芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend[2] BGM: フォールオブフォール ~ 秋めく滝 BGM: Fall of Fall ~ Autumnal Waterfall BGM: 妖怪の山 ~ Mysterious Mountain BGM: Youkai Mountain ~ Mysterious Mountain BGM: 少女が見た日本の原風景 BGM: The Primal Scene of Japan the Girl Saw BGM: 信仰は儚き人間の為に BGM: Faith is for the Transient People BGM: 御柱の墓場 ~ Grave of Being BGM: Cemetery of Onbashira ~ Grave of Being BGM: 神さびた古戦場 ~ Suwa Foughten Field BGM: The Venerable Ancient Battlefield ~ Suwa Foughten Field
Sunken_Fossil_World - Reimu's_Scenario
BGM: 魔法使いの憂鬱 BGM: Magician's Melancholy BGM: 恋色マスタースパーク BGM: Love-Colored Master Spark BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 万年置き傘にご注意を BGM: Beware the Umbrella Left There Forever BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 華のさかづき大江山 BGM: A Flower-Studded Sake Dish on Mt. Ooe BGM: 御柱の墓場 BGM: Cemetery of Onbashira BGM: 神さびた古戦場 BGM: The Venerable Ancient Battlefield BGM: 業火マントル BGM: Hellfire Mantle BGM: 霊知の太陽信仰 BGM: Solar Sect of Mystic Wisdom BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 強欲な獣のメメント BGM: Memento of an Avaricious Beast
Sunken_Fossil_World - Flandre's_Scenario
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 魔法使いの憂鬱 BGM: Magician's Melancholy BGM: 魔法使いの憂鬱 BGM: Magician's Melancholy BGM: 少女綺想曲 BGM: Maiden's Cappricio BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 万年置き傘にご注意を BGM: Beware the Umbrella Left There Forever BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 封じられた妖怪 BGM: The Sealed-Away Youkai BGM: 御柱の墓場 BGM: Cemetery of Onbashira BGM: キャプテンムラサ BGM: Captain Murasa BGM: 御柱の墓場 BGM: Cemetery of Onbashira BGM: 神さびた古戦場 BGM: The Venerable Ancient Battlefield BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: 業火マントル BGM: Hellfire Mantle BGM: 霊知の太陽信仰 BGM: Solar Sect of Mystic Wisdom BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 強欲な獣のメメント BGM: Memento of an Avaricious Beast BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 強欲な獣のメメント BGM: Memento of an Avaricious Beast BGM: 有機体全てのメメント ~ Memory of Fossil Energy. BGM: Memento of All Organisms ~ Memory of Fossil Energy. BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 少女綺想曲 BGM: Maiden's Capriccio BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 強欲な獣のメメント BGM: Memento of an Avaricious Beast BGM: 有機体全てのメメント ~ Memory of Fossil Energy. BGM: Memento of All Organisms ~ Memory of Fossil Energy.
Sunken_Fossil_World - Yuuma's_Scenario
BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 恋色マスタースパーク BGM: Love-Colored Master Spark BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 封じられた妖怪 BGM: The Sealed-Away Youkai BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 華のさかづき大江山 BGM: A Flower-Studded Sake Dish on Mt. Ooe BGM: 御柱の墓場 BGM: Cemetery of Onbashira BGM: 神さびた古戦場 BGM: The Venerable Ancient Battlefield BGM: 業火マントル BGM: Hellfire Mantle BGM: 霊知の太陽信仰 BGM: Solar Sect of Mystic Wisdom BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 少女綺想曲 ~ Dream Battle BGM: Maiden's Cappriccio ~ Dream Battle BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: U.N.オーエンは彼女なのか? BGM: U.N. Owen Was Her? BGM: もうドアには入れない BGM: No More Going Through Doors BGM: 秘神マターラ BGM: Secret God Matara
Sunken_Fossil_World - Marisa's_Scenario
BGM: 魔法使いの憂鬱 BGM: Magician's Melancholy BGM: 少女綺想曲 ~ Dream Battle BGM: Maiden's Cappriccio ~ Dream Battle BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 封じられた妖怪 BGM: The Sealed-Away Youkai BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 華のさかづき大江山 BGM: A Flower-Studded Sake Dish on Mt. Ooe BGM: 御柱の墓場 BGM: Cemetery of Onbashira BGM: キャプテンムラサ BGM: Captain Murasa BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 強欲な獣のメメント BGM: Memento of an Avaricious Beast
Sunken_Fossil_World - Minamitsu's_Scenario
BGM: 魔法使いの憂鬱 BGM: Magician's Melancholy BGM: 恋色マスタースパーク BGM: Love-Colored Master Spark BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 万年置き傘にご注意を BGM: Beware the Umbrella Left There Forever BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: 御柱の墓場 BGM: Cemetery of Onbashira BGM: 神さびた古戦場 BGM: The Venerable Ancient Battlefield BGM: 業火マントル BGM: Hellfire Mantle BGM: 霊知の太陽信仰 BGM: Solar Sect of Mystic Wisdom BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 強欲な獣のメメント BGM: Memento of an Avaricious Beast BGM: 有機体全てのメメント ~ Memory of Fossil Energy. BGM: Memento of All Organisms ~ Memory of Fossil Energy.
Sunken_Fossil_World - Joon_and_Shion's_Scenario
BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 華のさかづき大江山 BGM: A Flower-Studded Sake Dish on Mt. Ooe BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: 業火マントル BGM: Hellfire Mantle BGM: 霊知の太陽信仰 BGM: Solar Sect of Mystic Wisdom BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 神さびた古戦場 BGM: The Venerable Ancient Battlefield BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: U.N.オーエンは彼女なのか? BGM: U.N. Owen Was Her? BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 強欲な獣のメメント BGM: Memento of an Avaricious Beast BGM: 有機体全てのメメント ~ Memory of Fossil Energy. BGM: Memento of All Organisms ~ Memory of Fossil Energy.
Sunken_Fossil_World - Kanako's_Scenario
BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 封じられた妖怪 BGM: The Sealed-Away Youkai BGM: 御柱の墓場 BGM: Cemetery of Onbashira BGM: 少女綺想曲 BGM: Maiden's Capriccio BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: 御柱の墓場 BGM: Cemetery of Onbashira BGM: キャプテンムラサ BGM: Captain Murasa BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 強欲な獣のメメント BGM: Memento of an Avaricious Beast BGM: 有機体全てのメメント ~ Memory of Fossil Energy. BGM: Memento of All Organisms ~ Memory of Fossil Energy.
Embodiment_of_Scarlet_Devil - Reimu's_Scenario
BGM: ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM: 妖魔夜行 BGM: Apparitions Stalk the Night BGM: ルーネイトエルフ BGM: Lunate Elf BGM: おてんば恋娘 BGM: Tomboyish Girl in Love BGM: 上海紅茶館 ~ Chinese Tea BGM: Shanghai Scarlet Teahouse ~ Chinese Tea BGM: 明治十七年の上海アリス BGM: Shanghai Alice of Meiji 17[5] BGM: ヴワル魔法図書館 BGM: Voile, the Magic Library BGM: ラクトガール ~ 少女密室 BGM: Locked Girl ~ The Girl's Sealed Room BGM: メイドと血の懐中時計 BGM: The Maid and the Pocket Watch of Blood BGM: 月時計 ~ ルナ・ダイアル BGM: Lunar Clock ~ Luna Dial BGM: ツェペシュの幼き末裔 BGM: The Young Descendent of Tepes [8] BGM: 亡き王女の為のセプテット BGM: Septette for a Dead Princess [9]
Embodiment_of_Scarlet_Devil - Marisa's_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: U.N.オーエンは彼女なのか? BGM: U.N. Owen was Her?[3]
Embodiment_of_Scarlet_Devil - Reimu's_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: U.N.オーエンは彼女なのか? BGM: U.N. Owen was Her?[2]
Embodiment_of_Scarlet_Devil - Marisa's_Scenario
BGM: ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM: 妖魔夜行 BGM: Apparitions Stalk the Night BGM: ルーネイトエルフ BGM: Lunate Elf BGM: おてんば恋娘 BGM: Tomboyish Girl in Love BGM: 上海紅茶館 ~ Chinese Tea BGM: Shanghai Scarlet Teahouse ~ Chinese Tea BGM: 明治十七年の上海アリス BGM: Shanghai Alice of Meiji 17[3] BGM: ヴワル魔法図書館 BGM: Voile, the Magic Library BGM: ラクトガール ~ 少女密室 BGM: Locked Girl ~ The Girl's Sealed Room BGM: メイドと血の懐中時計 BGM: The Maid and the Pocket Watch of Blood BGM: 月時計 ~ ルナ・ダイアル BGM: Lunar Clock ~ Luna Dial BGM: ツェペシュの幼き末裔 BGM: The Young Descendent of Tepes[9] BGM: 亡き王女の為のセプテット BGM: Septette for a Dead Princess [12]
Urban_Legend_in_Limbo - Ichirin's_Scenario
BGM: 価値がわからない BGM: The Value is Unrealized BGM: 七玉蒐集ショウダウン BGM: Seven-Orb Collection Showdown BGM: 時代の風の訪れ BGM: Arrival of the Winds of the Era BGM: 公正なる奪い合い BGM: Fair Scramble BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: 竹林インフレイム BGM: Bamboo Forest in Flames BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Demo_Scenario
BGM: Everyday life with a ball BGM: An Everyday Life with Balls BGM: Occult a la carte BGM: Occult à la Carte BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: 七玉蒐集ショウダウン BGM: Seven-Orb Collection Showdown
Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario
BGM: 価値がわからない BGM: The Value is Unrealized BGM: 公正なる奪い合い BGM: Equitable Scramble for Victory BGM: ボールのある日常 BGM: An Everyday Life with Balls BGM: オカルトアラカルト BGM: Occult à la Carte BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: 対蹠地の鐘 BGM: Bell of Antipodes BGM: 可能性を信じて BGM: Believe in Possibilities BGM: 華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM: 外界フォークロア BGM: Outside World Folklore BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Sumireko's_Scenario
BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: 華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: 公正なる奪い合い BGM: Fair Scramble BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: 対蹠地の鐘 BGM: Bell of Antipodes BGM: 可能性を信じて BGM: Believe in Possibilities BGM: オカルトアラカルト BGM: Occult à la Carte BGM: ボールのある日常 BGM: An Everyday Life with Balls BGM: 七玉蒐集ショウダウン BGM: Seven-Orb Collection Showdown BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: 竹林インフレイム BGM: Bamboo Forest in Flames BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Kokoro's_Scenario
BGM: 価値がわからない BGM: The Value is Unrealized BGM: 公正なる奪い合い BGM: Equitable Scramble for Victory BGM: 時代の風の訪れ BGM: Arrival of the Winds of the Era BGM: 対蹠地の鐘 BGM: Bell of Antipodes BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: 竹林インフレイム BGM: Bamboo Forest in Flames BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Futo's_Scenario
BGM: 価値がわからない BGM: The Value is Unrealized BGM: 公正なる奪い合い BGM: Fair Scramble BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: 七玉蒐集ショウダウン BGM: Seven-Orb Collection Showdown BGM: 時代の風の訪れ BGM: Arrival of the Winds of the Era BGM: 竹林インフレイム BGM: Bamboo Forest in Flames BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Byakuren's_Scenario
BGM: 時代の風の訪れ BGM: Arrival of the Winds of the Era BGM: 公正なる奪い合い BGM: Equitable Scramble for Victory BGM: ボールのある日常 BGM: An Everyday Life with Balls BGM: 七玉蒐集ショウダウン BGM: Seven-Orb Collection Showdown BGM: 価値がわからない BGM: The Value is Unrealized BGM: 対蹠地の鐘 BGM: Bell of Antipodes BGM: 可能性を信じて BGM: Believe in Possibilities BGM: 華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Nitori's_Scenario
BGM: ボールのある日常 BGM: An Everyday Life with Balls BGM: オカルトアラカルト BGM: Occult à la Carte BGM: 価値がわからない BGM: The Value is Unrealized BGM: 公正なる奪い合い BGM: Equitable Scramble for Victory BGM: 可能性を信じて BGM: Believe in Possibilities BGM: 竹林インフレイム BGM: Bamboo Forest in Flames BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Marisa's_Scenario
BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: 七玉蒐集ショウダウン BGM: Seven-Orb Collection Showdown BGM: 時代の風の訪れ BGM: Arrival of the Winds of the Era BGM: 公正なる奪い合い BGM: Fair Scramble BGM: 価値がわからない BGM: The Value is Unrealized BGM: 対蹠地の鐘 BGM: Bell of Antipodes BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: 華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM: 外界フォークロア BGM: Outside World Folklore BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Kasen's_Scenario
BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: 七玉蒐集ショウダウン BGM: Seven-Orb Collection Showdown BGM: 価値がわからない BGM: The Value is Unrealized BGM: オカルトアラカルト BGM: Occult à la Carte BGM: 可能性を信じて BGM: Believe in Possibilities BGM: 対蹠地の鐘 BGM: Bell of Antipodes BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: 華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM: 外界フォークロア BGM: Outside World Folklore BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Reisen's_Scenario
BGM:顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: ネオ竹林インフレイム BGM: Neo Bamboo Forest in Flames BGM: 可能性を信じて BGM: Believe in Possibilities BGM: 億万劫の鐘 BGM: Bell of a Billion Kalpas BGM: 可能性を信じて BGM: Believe in Possibilities BGM: オカルトアトラクト BGM: Occult Attract BGM: 境界フォークロア BGM: Boundary Folklore BGM: 境界フォークロア(後半) BGM: Boundary Folklore (latter half) BGM: アンノウンX ~ Occultly Madness BGM: Unknown X ~ Occultly Madness
Urban_Legend_in_Limbo - Reimu's_Scenario
BGM: BGM: ??? BGM: 華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM: BGM: ??? BGM: 華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: 華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Miko's_Scenario
BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: オカルトアラカルト BGM: Occult à la Carte BGM: ボールのある日常 BGM: An Everyday Life with Balls BGM: 公正なる奪い合い BGM: Fair Scramble BGM: ボールのある日常 BGM: An Everyday Life with Balls BGM: 対蹠地の鐘 BGM: Bell of Antipodes BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: 華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Mamizou's_Scenario
BGM: ボールのある日常 BGM: An Everyday Life with Balls BGM: オカルトアラカルト BGM: Occult à la Carte BGM: 可能性を信じて BGM: Believe in Possibilities BGM: 七玉蒐集ショウダウン BGM: Seven-Orb Collection Showdown BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: 対蹠地の鐘 BGM: Bell of Antipodes BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: 華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM: 外界フォークロア BGM: Outside World Folklore BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Koishi's_Scenario
BGM: 可能性を信じて BGM: Believe in Possibilities BGM: 七玉蒐集ショウダウン BGM: Seven-Orb Collection Showdown BGM: 価値がわからない BGM: The Value is Unrealized BGM: オカルトアラカルト BGM: Occult à la Carte BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: 華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM: 外界フォークロア BGM: Outside World Folklore BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: 時代の風の訪れ BGM: Arrival of the Winds of the Era BGM: 竹林インフレイム BGM: Bamboo Forest in Flames BGM: 顕現した伝承の形 BGM: Forms of Manifested Folklore BGM: オカルトアラカルト BGM: Occult à la Carte BGM: 価値がわからない BGM: The Value is Unrealized BGM: 対蹠地の鐘 BGM: Bell of Antipodes BGM: 真実を知る者 BGM: Those Who Know the Truth BGM: 華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM: 外界フォークロア BGM: Outside World Folklore BGM: ラストオカルティズム ~ 現し世の秘術師 BGM: Last Occultism ~ Esotericist of the Present World
Great_Fairy_Wars - Route_A
BGM: 可愛い大戦争のリフレーン BGM: The Refrain of the Lovely Great War BGM: いたずらに命をかけて BGM: Staking Your Life on a Prank BGM: 年中夢中の好奇心 BGM: Year-Round Absorbed Curiosity BGM: いたずらに命をかけて BGM: Staking Your Life on a Prank BGM: 真夜中のフェアリーダンス BGM: A Midnight Fairy Dance BGM: 妖精大戦争 ~ Fairy Wars BGM: Great Fairy Wars ~ Fairy Wars BGM: 年中夢中の好奇心 BGM: Year-Round Absorbed Curiosity BGM: いたずらに命をかけて BGM: Staking Your Life on a Prank BGM: 真夜中のフェアリーダンス BGM: A Midnight Fairy Dance BGM: 妖精大戦争 ~ Fairy Wars BGM: Great Fairy Wars ~ Fairy Wars
Great_Fairy_Wars - Route_C
BGM: 可愛い大戦争のリフレーン BGM: The Refrain of the Lovely Great War BGM: いたずらに命をかけて BGM: Staking Your Life on a Prank BGM: 年中夢中の好奇心 BGM: Absorbed in Curiosity Year-Round BGM: いたずらに命をかけて BGM: Staking Your Life on a Prank BGM: 真夜中のフェアリーダンス BGM: A Midnight Fairy Dance BGM: 妖精大戦争 ~ Fairy Wars BGM: Great Fairy Wars ~ Fairy Wars BGM: 年中夢中の好奇心 BGM: いたずらに命をかけて BGM: Staking Your Life on a Prank BGM: 真夜中のフェアリーダンス BGM: A Midnight Fairy Dance BGM: 妖精大戦争 ~ Fairy Wars BGM: Great Fairy Wars ~ Fairy Wars
Great_Fairy_Wars - Route_B
BGM: 可愛い大戦争のリフレーン BGM: The Refrain of the Lovely Great War BGM: いたずらに命をかけて BGM: Staking Your Life on a Prank BGM: 年中夢中の好奇心 BGM: Absorbed in Curiosity Year-Round BGM: いたずらに命をかけて BGM: Staking Your Life on a Prank BGM: 真夜中のフェアリーダンス BGM: A Midnight Fairy Dance BGM: 妖精大戦争 ~ Fairy Wars BGM: Great Fairy Wars ~ Fairy Wars BGM: 年中夢中の好奇心 BGM: Absorbed in Curiosity Year-Round BGM: いたずらに命をかけて BGM: Staking Your Life on a Prank BGM: 真夜中のフェアリーダンス BGM: A Midnight Fairy Dance BGM: 妖精大戦争 ~ Fairy Wars BGM: Great Fairy Wars ~ Fairy Wars
Great_Fairy_Wars - Extra
BGM: ルーズレイン BGM: Loose Rain BGM: メイガスナイト BGM: Magus Night
Touhou_Hisoutensoku - Cirno's_Scenario
BGM: 甲論乙駁 BGM: Argue for and Against BGM: 信仰は儚き人間の為に BGM: Faith Is for the Transient People BGM: 冷吟閑酔 BGM: Drunk as I Like BGM: 上海紅茶館 ~ Chinese Tea BGM: Shanghai Scarlet Teahouse ~ Chinese Tea BGM: 以魚駆蠅 BGM: Swing a Fish to Drive Away Flies BGM: 恋色マジック BGM: Love-Colored Magic BGM: 霊知の太陽信仰 ~ Nuclear Fusion BGM: Solar Sect of Mystic Wisdom ~ Nuclear Fusion BGM: 以魚駆蠅 BGM: Swing a Fish to Drive Away Flies BGM: 人形のある風景 BGM: The Scenery of Living Dolls BGM: アンノウンX ~ Unfound Adventure BGM: Unknown X ~ Unfound Adventure
Touhou_Hisoutensoku - Sanae's_Scenario
BGM: 甲論乙駁 BGM: Argue for and Against BGM: おてんば恋娘 BGM: Tomboyish Girl in Love BGM: 冷吟閑酔 BGM: Drunk as I Like BGM: 上海紅茶館 ~ Chinese Tea BGM: Shanghai Scarlet Teahouse ~ Chinese Tea BGM: 伝説の巨神 BGM: The Legendary Titan BGM: 二色蓮花蝶 ~ Ancients BGM: Dichromatic Lotus Butterfly ~ Ancients BGM: 霊知の太陽信仰 ~ Nuclear Fusion BGM: Solar Sect of Mystic Wisdom ~ Nuclear Fusion BGM: 伝説の巨神 BGM: The Legendary Titan BGM: ぼくらの非想天則 BGM: Our Hisou Tensoku BGM: アンノウンX ~ Unfound Adventure BGM: Unknown X ~ Unfound Adventure BGM: 空に浮かぶ物体X BGM: The Floating Objects in the Sky X
Shuusou_Gyoku - Main_Scenario
BGM: フォルスストロベリー BGM: False Strawberry BGM: プリムローズシヴァ BGM: Primrose Shiver BGM: 幻想帝都 BGM: Fantastic Imperial Capital BGM: ディザストラスジェミニ BGM: Disastrous Gemini BGM: 華の幻想 紅夢の宙 BGM: Illusion of Flowers, Sky of Scarlet Dreams BGM: 天空アーミー BGM: Firmament Army BGM: スプートニク幻夜 BGM: Illusionary Sputnik Night BGM: 機械サーカス ~ Reverie BGM: Mechanical Circus ~ Reverie BGM: カナベラルの夢幻少女 BGM: Illusionary Girl from Canaveral BGM: 魔法少女十字軍 BGM: Magical Girl's Crusade BGM: アンティークテラー BGM: Antique Terror BGM: 夢機械 ~ Innocent Power BGM: Dream Machine ~ Innocent Power BGM: 幻想科学 ~ Doll's Phantom BGM: Fantasy Science ~ Doll's Phantom BGM: 少女神性 ~ Pandora's Box BGM: Girl's Divinity ~ Pandora's Box
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
Fan-made_Virtual_Autography - Sumireko's_Scenario
BGM: 地図の上の冒険 BGM: An Adventure on the Map BGM: 神々の読み合った祇々 BGM: Love Letters in the Mind Game BGM: ピアトゥユートピア BGM: Peer 2 Utopia BGM: 丑の日は撃ち返しを良らえ BGM: Bite the Bullet from the Midsummer Heat! BGM: 小さなカレイドスクリーンを触れて BGM: Touching on Your Small Kaleidoscreen BGM: バイナリィスフィア BGM: Binary Spheres BGM: 変わり続ける不変の景色 BGM: Inconstant and Unchanging Sights BGM: 少女の秘密のエピグラム BGM: Girl's Secret Epigram BGM: 玉つ嶋水上都市 BGM: Tamatsushima Floating City BGM: 偏執の朱筆 ~ Fanatic Monograph BGM: Red-pencil of Fixation ~ Fanatic Monograph BGM: 鳳凰鳴けり多賀城陵に BGM: A Phoenix Cried on the High Hill BGM: 幻想万華集 ~ Anthologia BGM: Fantastic Kaleidoscape ~ Anthologia BGM: テーマ・オブ・*****ストーリー BGM: Theme of ******* Story
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario
BGM:ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM:妖魔夜行 BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM:玉兎と禁断の果実 ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Fan-made_Virtual_Autography - Sumireko's_Extra
BGM: Go behind the scene! ~ 閉領域のゲーム BGM: Go behind the scene! ~ the Game in the Closed Region BGM: ドットマトリクスバトラーズ BGM: Dot Matrix Battlers
Fan-made_Virtual_Autography - Reimu's_Extra
BGM: Go behind the scene! ~ 閉領域のゲーム BGM: Go behind the scene! ~ the Game in the Closed Region BGM: ドットマトリクスバトラーズ BGM: Dot Matrix Battlers
Frantically_Forbidden_Fruit - Sakuya's_Legacy_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 星条旗のピエロは彼女なのか? BGM: The Pierrot of the Star Spangled Banner was Her? BGM: 四季の華は太陽に踊る BGM: The Four Seasons' Flowers Dance in the Sun BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me
Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario
BGM: A red soul like a firefly BGM: A Soul as Scarlet as a Ground Cherry BGM: Youma Yagyō BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM: Jade Rabbit and the Forbidden Fruit ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario
BGM: ミスティフライト BGM: Misty Flight BGM: 小さな小さな賢将 BGM: A Tiny, Tiny, Clever Commander BGM: スカイルーイン BGM: Sky Ruin BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 輝く天空の向こう側へ BGM: Toward the Other Side of the Glittering Skies BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: メタルバレットヘル BGM: Metal Bullet Hell BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd Eye BGM: 砂漠に佇む伽藍堂 BGM: A Garan Temple Standing in the Desert BGM: モンジュドウキーパーズ BGM: Monjudou Keepers BGM: 地底の奥深く BGM: In the Innermost Depths of the Earth BGM: 善財童子の讃嘆 ~ Bubbling Imaginary Treasures BGM: Extolment of Shancai Tongzi ~ Bubbling Imaginary Treasures
Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
Fan-made_Virtual_Autography - Reimu's_Scenario
BGM: 地図の上の冒険 BGM: An Adventure on the Map BGM: 神々の読み合った祇々 BGM: Love Letters in the Mind Game BGM: ピアトゥユートピア BGM: Peer 2 Utopia BGM: 丑の日は撃ち返しを良らえ BGM: Bite the Bullet from the Midsummer Heat! BGM: 小さなカレイドスクリーンを触れて BGM: Touching on Your Small Kaleidoscreen BGM: バイナリィスフィア BGM: Binary Spheres BGM: 変わり続ける不変の景色 BGM: Inconstant and Unchanging Sights BGM: 少女の秘密のエピグラム BGM: Girl's Secret Epigram BGM: 玉つ嶋水上都市 BGM: Tamatsushima Floating City BGM: 偏執の朱筆 ~ Fanatic Monograph BGM: Red-pencil of Fixation ~ Fanatic Monograph BGM: 鳳凰鳴けり多賀城陵に BGM: A Phoenix Cried on the High Hill BGM: 幻想万華集 ~ Anthologia BGM: Fantastic Kaleidoscape ~ Anthologia BGM: テーマ・オブ・*****ストーリー BGM: Theme of ******* Story
Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario
BGM: ミスティフライト BGM: Misty Flight BGM: 小さな小さな賢将 BGM: A Tiny, Tiny, Clever Commander BGM: スカイルーイン BGM: Sky Ruin BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 輝く天空の向こう側へ BGM: Toward the Other Side of the Glittering Skies BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: メタルバレットヘル BGM: Metal Bullet Hell BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd Eye BGM: 砂漠に佇む伽藍堂 BGM: A Garan Temple Standing in the Desert BGM: モンジュドウキーパーズ BGM: Monjudou Keepers BGM: 地底の奥深く BGM: In the Innermost Depths of the Earth BGM: 善財童子の讃嘆 ~ Bubbling Imaginary Treasures BGM: Extolment of Shancai Tongzi ~ Bubbling Imaginary Treasures
Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario
BGM:ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM:妖魔夜行 BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM:玉兎と禁断の果実 ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
BGM: 散雪之夕行 BGM: BGM: Glaciated Gloam ~ 未鸣七弦 BGM: Glaciated Gloom ~ The Unresonant Seven Strings BGM: 星潮莳夜歌 ~ Aflame Inviolable Illusion BGM: BGM: 赤蔷薇的瓶中庭 ~ Demiurge of Gloriosa BGM: The Red Rose's Bottled Garden ~ Demiurge of Gloriosa BGM: 樱下的雅集 ~ Sacrificial Poem BGM: BGM: 探韵夷社的光君 ~ Miscanthus Love lyrics BGM:
Fan-made_Virtual_Autography - Marisa's_Extra
BGM: Go behind the scene! ~ 閉領域のゲーム BGM: Go behind the scene! ~ the Game in the Closed Region BGM: ドットマトリクスバトラーズ BGM: Dot Matrix Battlers
Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario
BGM:ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM:妖魔夜行 BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM:玉兎と禁断の果実 ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario
BGM: ミスティフライト BGM: Misty Flight BGM: 小さな小さな賢将 BGM: A Tiny, Tiny, Clever Commander BGM: スカイルーイン BGM: Sky Ruin BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 輝く天空の向こう側へ BGM: Toward the Other Side of the Glittering Skies BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: メタルバレットヘル BGM: Metal Bullet Hell BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd Eye BGM: 砂漠に佇む伽藍堂 BGM: A Garan Temple Standing in the Desert BGM: モンジュドウキーパーズ BGM: Monjudou Keepers BGM: 地底の奥深く BGM: In the Innermost Depths of the Earth BGM: 善財童子の讃嘆 ~ Bubbling Imaginary Treasures BGM: Extolment of Shancai Tongzi ~ Bubbling Imaginary Treasures
Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
Bubbling_Imaginary_Treasures - Komachi_and_Kasen's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario
BGM: ミスティフライト BGM: Misty Flight BGM: 小さな小さな賢将 BGM: A Tiny, Tiny, Clever Commander BGM: スカイルーイン BGM: Sky Ruin BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 輝く天空の向こう側へ BGM: Toward the Other Side of the Glittering Skies BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: メタルバレットヘル BGM: Metal Bullet Hell BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd Eye BGM: 砂漠に佇む伽藍堂 BGM: A Garan Temple Standing in the Desert BGM: モンジュドウキーパーズ BGM: Monjudou Keepers BGM: 地底の奥深く BGM: In the Innermost Depths of the Earth BGM: 善財童子の讃嘆 ~ Bubbling Imaginary Treasures BGM: Extolment of Shancai Tongzi ~ Bubbling Imaginary Treasures
Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: 地図の上の冒険 BGM: An Adventure on the Map BGM: 神々の読み合った祇々 BGM: Love Letters in the Mind Game BGM: ピアトゥユートピア BGM: Peer 2 Utopia BGM: 丑の日は撃ち返しを良らえ BGM: Bite the Bullet from the Midsummer Heat! BGM: 小さなカレイドスクリーンを触れて BGM: Touching on Your Small Kaleidoscreen BGM: バイナリィスフィア BGM: Binary Spheres BGM: 変わり続ける不変の景色 BGM: Inconstant and Unchanging Sights BGM: 少女の秘密のエピグラム BGM: Girl's Secret Epigram BGM: 玉つ嶋水上都市 BGM: Tamatsushima Floating City BGM: 偏執の朱筆 ~ Fanatic Monograph BGM: Red-pencil of Fixation ~ Fanatic Monograph BGM: 鳳凰鳴けり多賀城陵に BGM: A Phoenix Cried on the High Hill BGM: 幻想万華集 ~ Anthologia BGM: Fantastic Kaleidoscape ~ Anthologia BGM: テーマ・オブ・*****ストーリー BGM: Theme of ******* Story
Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario
BGM: ミスティフライト BGM: Misty Flight BGM: 小さな小さな賢将 BGM: A Tiny, Tiny, Clever Commander BGM: スカイルーイン BGM: Sky Ruin BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 輝く天空の向こう側へ BGM: Toward the Other Side of the Glittering Skies BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: メタルバレットヘル BGM: Metal Bullet Hell BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd Eye BGM: 砂漠に佇む伽藍堂 BGM: A Garan Temple Standing in the Desert BGM: モンジュドウキーパーズ BGM: Monjudou Keepers BGM: 地底の奥深く BGM: In the Innermost Depths of the Earth BGM: 善財童子の讃嘆 ~ Bubbling Imaginary Treasures BGM: Extolment of Shancai Tongzi ~ Bubbling Imaginary Treasures
Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario
BGM:ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM:妖魔夜行 BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM:玉兎と禁断の果実 ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario
BGM:ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM:妖魔夜行 BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM:玉兎と禁断の果実 ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario
BGM:ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM:妖魔夜行 BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM:玉兎と禁断の果実 ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario
BGM:ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM:妖魔夜行 BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM:玉兎と禁断の果実 ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario
BGM:ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM:妖魔夜行 BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM:玉兎と禁断の果実 ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Imperishable_Night - Barrier_Team's_Scenario
BGM: 幻視の夜 ~ Ghostly Eyes BGM: Illusionary Night ~ Ghostly Eyes BGM: 蠢々秋月 ~ Mooned Insect BGM: Wriggling Autumn Moon ~ Mooned Insect BGM: 夜雀の歌声 ~ Night Bird BGM: Song of the Night Sparrow ~ Night Bird BGM: もう歌しか聞こえない BGM: Deaf to All but the Song BGM: 懐かしき東方の血 ~ Old World BGM: Nostalgic Blood of the East ~ Old World BGM: プレインエイジア BGM: Plain Asia BGM: 永夜の報い ~ Imperishable Night BGM: Retribution for the Eternal Night ~ Imperishable Night BGM: 恋色マスタースパーク BGM: Love-Colored Master Spark BGM: シンデレラケージ ~ Kagome-Kagome BGM: Cinderella Cage ~ Kagome-Kagome BGM: 狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 千年幻想郷 ~ History of the Moon BGM: Gensokyo Millennium ~ History of the Moon BGM: ヴォヤージュ 1970 BGM: Voyage 1970 BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 竹取飛翔 ~ Lunatic Princess BGM: Flight of The Bamboo Cutter ~ Lunatic Princess BGM: ヴォヤージュ 1970 BGM: Voyage 1970
Subterranean_Animism - Reimu_and_Suika's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl
Subterranean_Animism - Marisa_and_Alice's_Scenario
BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 封じられた妖怪 ~ Lost Place BGM: The Sealed-Away Youkai ~ Lost Place BGM: 渡る者の途絶えた橋 BGM: The Bridge People No Longer Cross BGM: 緑眼のジェラシー BGM: Green-eyed Jealousy BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 華のさかづき大江山 BGM: A Flower-Studded Sake Dish on Mt. Ooe BGM: ハーツフェルトファンシー BGM: Heartfelt Fancy BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd eye BGM: 廃獄ララバイ BGM: Lullaby of Deserted Hell BGM: 死体旅行 ~ Be of good cheer! BGM: Corpse Voyage ~ Be of good cheer! BGM: 業火マントル BGM: Hellfire Mantle BGM: 霊知の太陽信仰 ~ Nuclear Fusion BGM: Solar Sect of Mystic Wisdom ~ Nuclear Fusion
Subterranean_Animism - Reimu_and_Aya's_Scenario
BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 封じられた妖怪 ~ Lost Place BGM: The Sealed-Away Youkai ~ Lost Place BGM: 渡る者の途絶えた橋 BGM: The Bridge People No Longer Cross BGM: 緑眼のジェラシー BGM: Green-eyed Jealousy BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 華のさかづき大江山 BGM: A Flower-Studded Sake Dish on Mt. Ooe BGM: ハートフェルトファンシー BGM: Heartfelt Fancy BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd eye BGM: 廃獄ララバイ BGM: Lullaby of Deserted Hell BGM: 死体旅行 ~ Be of good cheer! BGM: Corpse Voyage ~ Be of good cheer! BGM: 業火マントル BGM: Hellfire Mantle BGM: 霊知の太陽信仰 ~ Nuclear Fusion BGM: Solar Sect of Mystic Wisdom ~ Nuclear Fusion
Subterranean_Animism - Reimu_and_Yukari's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl
Subterranean_Animism - Marisa_and_Alice's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl
Subterranean_Animism - Marisa_and_Patchouli's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl
Subterranean_Animism - Marisa_and_Nitori's_Scenario
BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 封じられた妖怪 ~ Lost Place BGM: The Sealed-Away Youkai ~ Lost Place BGM: 渡る者の途絶えた橋 BGM: The Bridge People No Longer Cross BGM: 緑眼のジェラシー BGM: Green-eyed Jealousy BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 華のさかづき大江山 BGM: A Flower-Studded Sake Dish on Mt. Ooe BGM: ハーツフェルトファンシー BGM: Heartfelt Fancy BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd eye BGM: 廃獄ララバイ BGM: Lullaby of Deserted Hell BGM: 死体旅行 ~ Be of good cheer! BGM: Corpse Voyage ~ Be of good cheer! BGM: 業火マントル BGM: Hellfire Mantle BGM: 霊知の太陽信仰 ~ Nuclear Fusion BGM: Solar Sect of Mystic Wisdom ~ Nuclear Fusion
Subterranean_Animism - Reimu_and_Suika's_Scenario
BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 封じられた妖怪 ~ Lost Place BGM: The Sealed-Away Youkai ~ Lost Place BGM: 渡る者の途絶えた橋 BGM: The Bridge People No Longer Cross BGM: 緑眼のジェラシー BGM: Green-eyed Jealousy BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 華のさかづき大江山 BGM: A Flower-Studded Sake Dish on Mt. Ooe BGM: ハーツフェルトファンシー BGM: Heartfelt Fancy BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd eye BGM: 廃獄ララバイ BGM: Lullaby of Deserted Hell BGM: 死体旅行 ~ Be of good cheer! BGM: Corpse Voyage ~ Be of good cheer! BGM: 業火マントル BGM: Hellfire Mantle BGM: 霊知の太陽信仰 ~ Nuclear Fusion BGM: Solar Sect of Mystic Wisdom ~ Nuclear Fusion
Subterranean_Animism - Reimu_and_Aya's_Extra
BGM: ラストリモート BGM: Last Remote BGM:BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl
Subterranean_Animism - Reimu_and_Yukari's_Scenario
BGM: Wind hole of darkness BGM: The Dark Blowhole BGM: Sealed Yokai ~ Lost Place BGM: The Sealed-Away Youkai ~ Lost Place BGM: The bridge where no one crosses anymore BGM: The Bridge People No Longer Cross BGM: 緑眼のジェラシー BGM: Green-eyed Jealousy BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 華のさかづき大江山 BGM: A Flower-Studded Sake Dish on Mt. Ooe BGM: ハートフェルトファンシー BGM: Heartfelt Fancy BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd eye BGM: 廃獄ララバイ BGM: Lullaby of Deserted Hell BGM: 死体旅行 ~ Be of good cheer! BGM: Corpse Voyage ~ Be of good cheer! BGM: 業火マントル BGM: Hellfire Mantle BGM: 霊知の太陽信仰 ~ Nuclear Fusion BGM: Solar Sect of Mystic Wisdom ~ Nuclear Fusion
Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 封じられた妖怪 ~ Lost Place BGM: The Sealed-Away Youkai ~ Lost Place BGM: 渡る者の途絶えた橋 BGM: The Bridge People No Longer Cross BGM: 緑眼のジェラシー BGM: Green-eyed Jealousy BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 華のさかづき大江山 BGM: A Flower-Studded Sake Dish on Mt. Ooe BGM: ハーツフェルトファンシー BGM: Heartfelt Fancy BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd eye BGM: 廃獄ララバイ BGM: Lullaby of Deserted Hell BGM: 死体旅行 ~ Be of good cheer! BGM: Corpse Voyage ~ Be of good cheer! BGM: 業火マントル BGM: Hellfire Mantle BGM: 霊知の太陽信仰 ~ Nuclear Fusion BGM: Solar Sect of Mystic Wisdom ~ Nuclear Fusion
Subterranean_Animism - Marisa_and_Nitori's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl
Undefined_Fantastic_Object - Marisa_A's_Scenario
BGM: 春の湊に BGM: At the Harbor of Spring BGM: 小さな小さな賢い将 BGM: A Tiny, Tiny Clever Commander BGM: 閉ざせし雲の通い路 BGM: The Sealed Cloud Route BGM: 万年置き傘にご注意を BGM: Beware the Umbrella Left There Forever BGM: スカイルーイン BGM: Sky Ruin BGM: 時代親父とハイカラ少女 BGM: The Traditional Old Man and the Stylish Girl BGM: 幽霊客船の時空を越えた旅 BGM: Interdimensional Voyage of a Ghostly Passenger Ship BGM: キャプテン・ムラサ BGM: Captain Murasa BGM: 魔界地方都市エソテリア BGM: Provincial Makai City Esoteria BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 法界の火 BGM: The Fire of Hokkai BGM: 感情の摩天楼 ~ Cosmic Mind BGM: Emotional Skyscraper ~ Cosmic Mind
Undefined_Fantastic_Object - Sanae_A's_Extra
BGM: 夜空のユーフォーロマンス BGM: UFO Romance in the Night Sky BGM: 平安のエイリアン BGM: Heian Alien
Undefined_Fantastic_Object - Marisa_B's_Scenario
BGM: 春の湊に BGM: At the Harbor of Spring BGM: 小さな小さな賢い将 BGM: A Tiny, Tiny Clever Commander BGM: 閉ざせし雲の通い路 BGM: The Sealed Cloud Route BGM: 万年置き傘にご注意を BGM: Beware the Umbrella Left There Forever BGM: スカイルーイン BGM: Sky Ruin BGM: 時代親父とハイカラ少女 BGM: The Traditional Old Man and the Stylish Girl BGM: 幽霊客船の時空を越えた旅 BGM: Interdimensional Voyage of a Ghostly Passenger Ship BGM: キャプテン・ムラサ BGM: Captain Murasa BGM: 魔界地方都市エソテリア BGM: Provincial Makai City Esoteria BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 法界の火 BGM: The Fire of Hokkai BGM: 感情の摩天楼 ~ Cosmic Mind BGM: Emotional Skyscraper ~ Cosmic Mind
Undefined_Fantastic_Object - Reimu_A's_Extra
BGM: 夜空のユーフォーロマンス BGM: UFO Romance in the Night Sky BGM: 平安のエイリアン BGM: Heian Alien
Undefined_Fantastic_Object - Sanae_B's_Extra
BGM: 夜空のユーフォーロマンス BGM: UFO Romance in the Night Sky BGM: 平安のエイリアン BGM: Heian Alien
Undefined_Fantastic_Object - Sanae_B's_Scenario
BGM: 春の湊に BGM: At the Harbor of Spring
Undefined_Fantastic_Object - Reimu_A's_Scenario
BGM: 春の湊に BGM: At the Harbor of Spring BGM: 小さな小さな賢い将 BGM: A Tiny, Tiny Clever Commander BGM: 閉ざせし雲の通い路 BGM: The Sealed Cloud Route BGM: 万年置き傘にご注意を BGM: Beware the Umbrella Left There Forever BGM: スカイルーイン BGM: Sky Ruin BGM: 時代親父とハイカラ少女 BGM: The Traditional Old Man and the Stylish Girl BGM: 幽霊客船の時空を越えた旅 BGM: Interdimensional Voyage of a Ghostly Passenger Ship BGM: キャプテン・ムラサ BGM: Captain Murasa BGM: 魔界地方都市エソテリア BGM: Provincial Makai City Esoteria BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 法界の火 BGM: The Fire of Hokkai BGM: 感情の摩天楼 ~ Cosmic Mind BGM: Emotional Skyscraper ~ Cosmic Mind
Undefined_Fantastic_Object - Reimu_B's_Extra
BGM: 夜空のユーフォーロマンス BGM: UFO Romance in the Night Sky BGM: 平安のエイリアン BGM: Heian Alien
Undefined_Fantastic_Object - Reimu_B's_Scenario
BGM: 春の湊に BGM: At the Harbor of Spring BGM: 小さな小さな賢い将 BGM: A Tiny, Tiny Clever Commander BGM: 閉ざせし雲の通い路 BGM: The Sealed Cloud Route BGM: 万年置き傘にご注意を BGM: Beware the Umbrella Left There Forever BGM: スカイルーイン BGM: Sky Ruin BGM: 時代親父とハイカラ少女 BGM: The Traditional Old Man and the Stylish Girl BGM: 幽霊客船の時空を越えた旅 BGM: Interdimensional Voyage of a Ghostly Passenger Ship BGM: キャプテン・ムラサ BGM: Captain Murasa BGM: 魔界地方都市エソテリア BGM: Provincial Makai City Esoteria BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 法界の火 BGM: The Fire of Hokkai BGM: 感情の摩天楼 ~ Cosmic Mind BGM: Emotional Skyscraper ~ Cosmic Mind
Undefined_Fantastic_Object - Marisa_B's_Extra
BGM: 夜空のユーフォーロマンス BGM: UFO Romance in the Night Sky BGM: 平安のエイリアン BGM: Heian Alien
Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: 春の湊に BGM: At the Harbor of Spring BGM: 小さな小さな賢将 BGM: A Tiny, Tiny, Clever Commander BGM: 閉ざせし雲の通い路 BGM: The Sealed Cloud Route BGM: 万年置き傘にご注意を BGM: Beware the Umbrella Left There Forever BGM: スカイルーイン BGM: Sky Ruin BGM: 時代親父とハイカラ少女 BGM: The Traditional Old Man and the Stylish Girl BGM: 幽霊客船の時空を越えた旅 BGM: Interdimensional Voyage of a Ghostly Passenger Ship BGM: キャプテン・ムラサ BGM: Captain Murasa BGM: 魔界地方都市エソテリア BGM: Rural Makai City Esoteria BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 法界の火 BGM: Fires of Hokkai BGM: 感情の摩天楼 ~ Cosmic Mind BGM: Emotional Skyscraper ~ Cosmic Mind
Undefined_Fantastic_Object - Marisa_A's_Extra
BGM: 夜空のユーフォーロマンス BGM: UFO Romance in the Night Sky BGM: 平安のエイリアン BGM: Heian Alien
Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 魔獣スクランブル BGM: Magic Beast Scramble BGM: 魔獣スクランブル BGM: Magic Beast Scramble BGM: タイニーシャングリラ BGM: Tiny Shangri-La BGM: トータスドラゴン 〜 幸運と不運 BGM: Tortoise Dragon ~ Fortune and Misfortune BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario_(Demo)
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 魔獣スクランブル BGM: Magic Beast Scramble
Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario_(Demo)
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 魔獣スクランブル BGM: Magic Beast Scramble
Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario_(Demo)
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 忘れがたき、よすがの緑 BGM: Unforgettable, the Nostalgic Greenery
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 佐渡の二ッ岩 BGM: Sado no Futatsuiwa BGM: 死体旅行 〜 Be of good cheer! BGM: Corpse Voyage ~ Be of good cheer! BGM: ???BGM_JAP??? BGM: ???BGM_ENG??? BGM: 振り向かない黄泉の道 BGM: The Path to Yomi Where None Turn Back BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Tsukasa's_Scenario
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: タイニーシャングリラ BGM: Tiny Shangri-La BGM: 聖徳太子のペガサス 〜 Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus BGM: 振り向かない黄泉の道 BGM: The Path to Yomi Where None Turn Back BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario
BGM: 佐渡の二ッ岩 BGM: Sado no Futatsuiwa BGM: 佐渡の二ッ岩 BGM: Sado no Futatsuiwa BGM: 獣王達の休息 BGM: Beast Kings' Rest BGM: 吸血怪獣チュパカブラ BGM: Vampiric Cryptid Chupacabra BGM: 振り向かない黄泉の道 BGM: The Path to Yomi Where None Turn Back BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 魔獣スクランブル BGM: Magic Beast Scramble BGM: 鬼は悠久の山に BGM: The Oni Go to the Perpetual Mountain BGM: 勇敢で有閑な妖獣 BGM: A Brave and Leisurely Beast BGM: トータスドラゴン 〜 幸運と不運 BGM: Tortoise Dragon ~ Fortune and Misfortune BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario
BGM: タイニーシャングリラ BGM: Tiny Shangli-La BGM: 勇敢で有閑な妖獣 BGM: A Brave and Leisurely Beast BGM: 聖徳太子のペガサス 〜 Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus BGM: 吸血怪獣チュパカブラ BGM: Vampiric Cryptid Chupacabra BGM: 強欲な獣のメメント BGM: Memento of the Avaricious Beast BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: タイニーシャングリラ BGM: Tiny Shangri-La BGM: 勇敢で有閑な妖獣 BGM: A Brave and Leisurely Beast BGM: 吸血怪獣チュパカブラ BGM: Vampiric Cryptid Chupacabra BGM: 鬼は悠久の山に BGM: The Oni Go to the Perpetual Mountain BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Ran's_Scenario
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 死体旅行 〜 Be of good cheer! BGM: Corpse Voyage ~ Be of good cheer! BGM: 鬼は悠久の山に BGM: The Oni Go to the Perpetual Mountain BGM: 吸血怪獣チュパカブラ BGM: Vampiric Cryptid Chupacabra BGM: 強欲な獣のメメント BGM: Memento of the Avaricious Beast
Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario_(Demo)
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 魔獣スクランブル BGM: Magic Beast Scramble
Unfinished_Dream_of_All_Living_Ghost - Sanae's_Scenario
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 魔獣スクランブル BGM: Magic Beast Scramble BGM: トータスドラゴン 〜 幸運と不運 BGM: Tortoise Dragon ~ Fortune and Misfortune BGM: タイニーシャングリラ BGM: Tiny Shangri-La BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Rin's_Scenario
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 魔獣スクランブル BGM: Magic Beast Scramble BGM: 吸血怪獣チュパカブラ BGM: Vampiric Cryptid Chupacabra BGM: 強欲な獣のメメント BGM: Memento of the Avaricious Beast BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario
BGM: 勇敢で有閑な妖獣 BGM: A Brave and Leisurely Beast BGM: 吸血怪獣チュパカブラ BGM: Vampiric Cryptid Chupacabra BGM: 強欲な獣のメメント BGM: Memento of the Avaricious Beast BGM: タイニーシャングリラ BGM: Tiny Shangli-La BGM: トータスドラゴン 〜 幸運と不運 BGM: Tortoise Dragon ~ Fortune and Misfortune BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario_(Demo)
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 魔獣スクランブル BGM: Magic Beast Scramble
Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 魔獣スクランブル BGM: Magic Beast Scramble BGM: 鬼は悠久の山に BGM: The Oni Go to the Perpetual Mountain BGM: 振り向かない黄泉の道 BGM: The Path to Yomi Where None Turn Back BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 魔獣スクランブル BGM: Magic Beast Scramble BGM: 聖徳太子のペガサス 〜 Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus BGM: 勇敢で有閑な妖獣 BGM: A Brave and Leisurely Beast BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 少女が見た日本の原風景 BGM: The Primal Scene of Japan the Girl Saw BGM: 鬼は悠久の山に BGM: The Oni Go to the Perpetual Mountain BGM: 振り向かない黄泉の道 BGM: The Path to Yomi Where None Turn Back BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Hidden_Star_in_Four_Seasons - Cirno's_Extra
BGM: もうドアには入れない BGM: No More Going Through Doors BGM: 秘神マターラ ~ Hidden Star in All Seasons. BGM: Secret God Matara ~ Hidden Star in All Seasons.
Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 世界は可愛く出来ている BGM: The World Is Made in an Adorable Way BGM: 魔獣スクランブル BGM: Magic Beast Scramble BGM: 持ちわびた逢魔が時 BGM: The Long-Awaited Oumagatoki BGM: 鬼は悠久の山に BGM: The Oni Go to the Perpetual Mountain BGM: 勇敢で有閑な妖怪 BGM: A Brave and Leisurely Beast BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness. BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Hidden_Star_in_Four_Seasons - Cirno's_Scenario
BGM: 希望の星は青霄に昇る BGM: A Star of Hope Rises in the Blue Sky BGM: 真夏の妖精の夢 BGM: A Midsummer Fairy's Dream BGM: 色無き風は妖怪の山に BGM: 山奥のエンカウンター BGM: Deep-Mountain Encounter BGM: 桜色の海を泳いで BGM: Swim Through a Sakura-Colored Sea BGM: 一対の神獣 BGM: A Pair of Divine Beasts BGM: 幻想のホワイトトラベラー BGM: Illusionary White Traveler BGM: 魔法の笠地蔵 BGM: The Magic Straw-Hat Jizo BGM: 禁断の扉の向こうは、この世かあの世か BGM: Does the Forbidden Door Lead to This World, or the World Beyond? BGM: クレイジーバックダンサーズ BGM: Crazy Backup Dancers BGM: イントゥ・バックドア BGM: Into Backdoor BGM: 秘匿されたフォーシーズンズ BGM: The Concealed Four Seasons
Hidden_Star_in_Four_Seasons - Aya's_Scenario
BGM: 希望の星は青霄に昇る BGM: A Star of Hope Rises in the Blue Sky BGM: 真夏の妖精の夢 BGM: A Midsummer Fairy's Dream BGM: 色無き風は妖怪の山に BGM: 山奥のエンカウンター BGM: Deep-Mountain Encounter BGM: 桜色の海を泳いで BGM: Swim Through a Sakura-Colored Sea BGM: 一対の神獣 BGM: A Pair of Divine Beasts BGM: 幻想のホワイトトラベラー BGM: Illusionary White Traveler BGM: 魔法の笠地蔵 BGM: The Magic Straw-Hat Jizo BGM: 禁断の扉の向こうは、この世かあの世か BGM: Does the Forbidden Door Lead to This World, or the World Beyond? BGM: クレイジーバックダンサーズ BGM: Crazy Backup Dancers BGM: イントゥ・バックドア BGM: Into Backdoor BGM: 秘匿されたフォーシーズンズ BGM: The Concealed Four Seasons
Hidden_Star_in_Four_Seasons - Marisa's_Scenario
BGM: 希望の星は青霄に昇る BGM: A Star of Hope Rises in the Blue Sky BGM: 真夏の妖精の夢 BGM: A Midsummer Fairy's Dream BGM: 色無き風は妖怪の山に BGM: 山奥のエンカウンター BGM: Deep-Mountain Encounter BGM: 桜色の海を泳いで BGM: Swim Through a Sakura-Colored Sea BGM: 一対の神獣 BGM: A Pair of Divine Beasts BGM: 幻想のホワイトトラベラー BGM: Illusionary White Traveler BGM: 魔法の笠地蔵 BGM: The Magic Straw-Hat Jizo BGM: 禁断の扉の向こうは、この世かあの世か BGM: Does the Forbidden Door Lead to This World, or the World Beyond? BGM: クレイジーバックダンサーズ BGM: Crazy Backup Dancers BGM: イントゥ・バックドア BGM: Into Backdoor BGM: 秘匿されたフォーシーズンズ BGM: The Concealed Four Seasons
Hidden_Star_in_Four_Seasons - Reimu's_Extra
BGM: もうドアには入れない BGM: No More Going Through Doors BGM: 秘神マターラ ~ Hidden Star in All Seasons. BGM: Secret God Matara ~ Hidden Star in All Seasons.
Hidden_Star_in_Four_Seasons - Aya's_Extra
BGM: もうドアには入れない BGM: No More Going Through Doors BGM: 秘神マターラ ~ Hidden Star in All Seasons. BGM: Secret God Matara ~ Hidden Star in All Seasons.
Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: 希望の星は青霄に昇る BGM: A Star of Hope Rises in the Blue Sky BGM: 真夏の妖精の夢 BGM: A Midsummer Fairy's Dream BGM: 色無き風は妖怪の山に BGM: 山奥のエンカウンター BGM: Deep-Mountain Encounter BGM: 桜色の海を泳いで BGM: Swim Through a Sakura-Colored Sea BGM: 一対の神獣 BGM: A Pair of Divine Beasts BGM: 幻想のホワイトトラベラー BGM: Illusionary White Traveler BGM: 魔法の笠地蔵 BGM: The Magic Straw-Hat Jizo BGM: 禁断の扉の向こうは、この世かあの世か BGM: Does the Forbidden Door Lead to This World, or the World Beyond? BGM: クレイジーバックダンサーズ BGM: Crazy Backup Dancers BGM: イントゥ・バックドア BGM: Into Backdoor BGM: 秘匿されたフォーシーズンズ BGM: The Concealed Four Seasons
Hidden_Star_in_Four_Seasons - Marisa's_Extra
BGM: もうドアには入れない BGM: No More Going Through Doors BGM: 秘神マターラ ~ Hidden Star in All Seasons. BGM: Secret God Matara ~ Hidden Star in All Seasons.
Lotus_Land_Story - Marisa's_Extra
BGM: 禁じざるをえない遊戯 BGM: The Inevitably Forbidden Game BGM: メイド幻想 ~ Icemilk Magic BGM: Illusion of a Maid ~ Icemilk Magic BGM: かわいい悪魔 ~ Innocence BGM: Cute Devil ~ Innocence
Lotus_Land_Story - Reimu's_Extra
BGM: 禁じざるをえない遊戯 BGM: The Inevitably Forbidden Game BGM: メイド幻想 ~ Icemilk Magic BGM: Illusion of a Maid ~ Icemilk Magic BGM: かわいい悪魔 ~ Innocence BGM: Cute Devil ~ Innocence
Lotus_Land_Story - Marisa's_Scenario
BGM: Selene's Light BGM: Selene's Light BGM: 装飾戦 ~ Decoration Battle BGM: Decoration Battle BGM: Break the Sabbath BGM: Break the Sabbath BGM: 紅響曲 ~ Scarlet Phoneme BGM: Scarlet Symphony ~ Scarlet Phoneme BGM: BAD Apple!! BGM: BAD Apple!! BGM: 霊戦 ~ Perdition crisis BGM: Spirit Battle ~ Perdition crisis BGM: アリスマエステラ BGM: Alice Maestera BGM: 少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM: Lotus Love BGM: Lotus Love BGM: 眠れる恐怖 ~ Sleeping Terror BGM: Sleeping Terror BGM: Dream Land BGM: Dream Land BGM: 幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream
Lotus_Land_Story - Reimu's_Scenario
BGM: Witching Dream BGM: Witching Dream BGM: 装飾戦 ~ Decoration Battle BGM: Decoration Battle BGM: Break the Sabbath BGM: Break the Sabbath BGM: 紅響曲 ~ Scarlet Phoneme BGM: Scarlet Symphony ~ Scarlet Phoneme BGM: BAD Apple!! BGM: BAD Apple!! BGM: 霊戦 ~ Perdition crisis BGM: Spirit Battle ~ Perdition crisis BGM: アリスマエステラ BGM: Alice Maestra BGM: 星の器 ~ Casket of Star BGM: Vessel of Stars ~ Casket of Star BGM: Lotus Love BGM: Lotus Love BGM: 眠れる恐怖 ~ Sleeping Terror BGM: Sleeping Terror BGM: Dream Land BGM: Dream Land BGM: 幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream
Imperishable_Night - Barrier_Team's_Extra
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Person of Hourai BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke
Imperishable_Night - Netherworld_Team's_Scenario
BGM: 幻視の夜 ~ Ghostly Eyes BGM: Illusionary Night ~ Ghostly Eyes BGM: 蠢々秋月 ~ Mooned Insect BGM: Wriggling Autumn Moon ~ Mooned Insect BGM: 夜雀の歌声 ~ Night Bird BGM: Song of the Night Sparrow ~ Night Bird BGM: もう歌しか聞こえない BGM: Deaf to All but the Song BGM: 懐かしき東方の血 ~ Old World BGM: Nostalgic Blood of the East ~ Old World BGM: プレインエイジア BGM: Plain Asia BGM: 永夜の報い ~ Imperishable Night BGM: Retribution for the Eternal Night ~ Imperishable Night BGM: 恋色マスタースパーク BGM: Love-Colored Master Spark BGM: シンデレラケージ ~ Kagome-Kagome BGM: Cinderella Cage ~ Kagome-Kagome BGM: 狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 千年幻想郷 ~ History of the Moon BGM: Gensokyo Millennium ~ History of the Moon BGM: ヴォヤージュ 1970 BGM: Voyage 1970 BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 竹取飛翔 ~ Lunatic Princess BGM: Flight of the Bamboo Cutter ~ Lunatic Princess BGM: ヴォヤージュ1970 BGM: Voyage 1970
Imperishable_Night - Magic_Team's_Scenario
BGM: 幻視の夜 ~ Ghostly Eyes BGM: Illusionary Night ~ Ghostly Eyes BGM: 蠢々秋月 ~ Mooned Insect BGM: Wriggling Autumn Moon ~ Mooned Insect BGM: 夜雀の歌声 ~ Night Bird BGM: Song of the Night Sparrow ~ Night Bird BGM: もう歌しか聞こえない BGM: Deaf to All but the Song BGM: 懐かしき東方の血 ~ Old World BGM: Nostalgic Blood of the East ~ Old World BGM: プレインエイジア BGM: Plain Asia BGM: 永夜の報い ~ Imperishable Night BGM: Retribution for the Eternal Night ~ Imperishable Night BGM: 少女綺想曲 ~ Dream Battle BGM: Maiden's Capriccio ~ Dream Battle BGM: シンデレラケージ ~ Kagome-Kagome BGM: Cinderella Cage ~ Kagome-Kagome BGM: 狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM: ヴォヤージュ1969 BGM: Voyage 1969 BGM: 千年幻想郷 ~ History of the Moon BGM: Gensokyo Millennium ~ History of the Moon BGM: ヴォヤージュ1970 BGM: Voyage 1970 BGM: ヴォヤージュ1969 BGM: Voyage 1969 BGM: 竹取飛翔 ~ Lunatic Princess BGM: Flight of the Bamboo Cutter ~ Lunatic Princess BGM: ヴォヤージュ1970 BGM: Voyage 1970
Imperishable_Night - Netherworld_Team's_Extra
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Person of Hourai BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke
Imperishable_Night - Scarlet_Team's_Extra
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Person of Hourai BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke
Imperishable_Night - Scarlet_Team's_Scenario
BGM: 幻視の夜 ~ Ghostly Eyes BGM: Illusionary Night ~ Ghostly Eyes BGM: 蠢々秋月 ~ Mooned Insect BGM: Wriggling Autumn Moon ~ Mooned Insect BGM: 夜雀の歌声 ~ Night Bird BGM: Song of the Night Sparrow ~ Night Bird BGM: もう歌しか聞こえない BGM: Deaf to All but the Song BGM: 懐かしき東方の血 ~ Old World BGM: Nostalgic Blood of the East ~ Old World BGM: プレインエイジア BGM: Plain Asia BGM: 永夜の報い ~ Imperishable Night BGM: Retribution for the Eternal Night ~ Imperishable Night BGM: 少女綺想曲 ~ Dream Battle BGM: Maiden's Capriccio ~ Dream Battle BGM: シンデレラケージ ~ Kagome-Kagome BGM: Cinderella Cage ~ Kagome-Kagome BGM: 狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 千年幻想郷 ~ History of the Moon BGM: Gensokyo Millennium ~ History of the Moon BGM: ヴォヤージュ 1970 BGM: Voyage 1970 BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 竹取飛翔 ~ Lunatic Princess BGM: Flight of the Bamboo Cutter ~ Lunatic Princess BGM: ヴォヤージュ1970 BGM: Voyage 1970
Imperishable_Night - Magic_Team's_Extra
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Person of Hourai BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter)
BGM:地蔵だけが知る哀嘆 BGM: The Lamentations Known Only by Jizo BGM: ジェリーストーン BGM: Jelly Stone BGM: ロストリバー BGM: Lost River BGM: 石の赤子と水中の牛 BGM: The Stone Baby and the Submerged Bovine BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: アンロケイテッドヘル BGM: Unlocated Hell BGM: トータスドラゴン ~ 幸運と不運 BGM: Tortoise Dragon ~ Good Fortune and Bad Fortune BGM: ビーストメトロポリス BGM: Beast Metropolis BGM: セラミックスの杖刀人 BGM: Joutoujin of Ceramics BGM: エレクトリックヘリテージ BGM: Electric Heritage BGM: 偶像に世界を委ねて ~ Idoratrize World BGM: Entrusting this World to Idols ~ Idolatrize World
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf)
BGM:地蔵だけが知る哀嘆 BGM: The Lamentations Known Only by Jizo BGM: ジェリーストーン BGM: Jelly Stone BGM: ロストリバー BGM: Lost River BGM: 石の赤子と水中の牛 BGM: The Stone Baby and the Submerged Bovine BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: アンロケイテッドヘル BGM: Unlocated Hell BGM: トータスドラゴン ~ 幸運と不運 BGM: Tortoise Dragon ~ Good Fortune and Bad Fortune BGM: ビーストメトロポリス BGM: Beast Metropolis BGM: セラミックスの杖刀人 BGM: Joutoujin of Ceramics BGM: エレクトリックヘリテージ BGM: Electric Heritage BGM: 偶像に世界を委ねて ~ Idoratrize World BGM: Entrusting this World to Idols ~ Idolatrize World
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle)
BGM:地蔵だけが知る哀嘆 BGM: The Lamentations Known Only by Jizo BGM: ジェリーストーン BGM: Jelly Stone BGM: ロストリバー BGM: Lost River BGM: 石の赤子と水中の牛 BGM: The Stone Baby and the Submerged Bovine BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: アンロケイテッドヘル BGM: Unlocated Hell BGM: トータスドラゴン ~ 幸運と不運 BGM: Tortoise Dragon ~ Good Fortune and Bad Fortune BGM: ビーストメトロポリス BGM: Beast Metropolis BGM: セラミックスの杖刀人 BGM: Joutoujin of Ceramics BGM: エレクトリックヘリテージ BGM: Electric Heritage BGM: 偶像に世界を委ねて ~ Idoratrize World BGM: Entrusting this World to Idols ~ Idolatrize World
Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Otter)
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf)
BGM:地蔵だけが知る哀嘆 BGM: The Lamentations Known Only by Jizo BGM: ジェリーストーン BGM: Jelly Stone BGM: ロストリバー BGM: Lost River BGM: 石の赤子と水中の牛 BGM: The Stone Baby and the Submerged Bovine BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: アンロケイテッドヘル BGM: Unlocated Hell BGM: トータスドラゴン ~ 幸運と不運 BGM: Tortoise Dragon ~ Good Fortune and Bad Fortune BGM: ビーストメトロポリス BGM: Beast Metropolis BGM: セラミックスの杖刀人 BGM: Joutounin of Ceramics BGM: エレクトリックヘリテージ BGM: Electric Heritage BGM: 偶像に世界を委ねて ~ Idoratrize World BGM: Entrusting this World to Idols ~ Idolatrize World
Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle)
BGM:地蔵だけが知る哀嘆 BGM: The Lamentations Known Only by Jizo BGM: ジェリーストーン BGM: Jelly Stone BGM: ロストリバー BGM: Lost River BGM: 石の赤子と水中の牛 BGM: The Stone Baby and the Submerged Bovine BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: アンロケイテッドヘル BGM: Unlocated Hell BGM: トータスドラゴン ~ 幸運と不運 BGM: Tortoise Dragon ~ Good Fortune and Bad Fortune BGM: ビーストメトロポリス BGM: Beast Metropolis BGM: セラミックスの杖刀人 BGM: Joutounin of Ceramics BGM: エレクトリックヘリテージ BGM: Electric Heritage BGM: 偶像に世界を委ねて ~ Idoratrize World BGM: Entrusting this World to Idols ~ Idolatrize World
Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter)
BGM:地蔵だけが知る哀嘆 BGM: The Lamentations Known Only by Jizo BGM: ジェリーストーン BGM: Jelly Stone BGM: ロストリバー BGM: Lost River BGM: 石の赤子と水中の牛 BGM: The Stone Baby and the Submerged Bovine BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: アンロケイテッドヘル BGM: Unlocated Hell BGM: トータスドラゴン ~ 幸運と不運 BGM: Tortoise Dragon ~ Good Fortune and Bad Fortune BGM: ビーストメトロポリス BGM: Beast Metropolis BGM: セラミックスの杖刀人 BGM: Joutounin of Ceramics BGM: エレクトリックヘリテージ BGM: Electric Heritage BGM: 偶像に世界を委ねて ~ Idoratrize World BGM: Entrusting this World to Idols ~ Idolatrize World
Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf)
BGM:地蔵だけが知る哀嘆 BGM: The Lamentations Known Only by Jizo BGM: ジェリーストーン BGM: Jelly Stone BGM: ロストリバー BGM: Lost River BGM: 石の赤子と水中の牛 BGM: The Stone Baby and the Submerged Bovine BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: アンロケイテッドヘル BGM: Unlocated Hell BGM: トータスドラゴン ~ 幸運と不運 BGM: Tortoise Dragon ~ Good Fortune and Bad Fortune BGM: ビーストメトロポリス BGM: Beast Metropolis BGM: セラミックスの杖刀人 BGM: Joutounin of Ceramics BGM: エレクトリックヘリテージ BGM: Electric Heritage BGM: 偶像に世界を委ねて ~ Idoratrize World BGM: Entrusting this World to Idols ~ Idolatrize World
Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Wolf)
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Otter)
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle)
BGM:地蔵だけが知る哀嘆 BGM: The Lamentations Known Only by Jizo BGM: ジェリーストーン BGM: Jelly Stone BGM: ロストリバー BGM: Lost River BGM: 石の赤子と水中の牛 BGM: The Stone Baby and the Submerged Bovine BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: アンロケイテッドヘル BGM: Unlocated Hell BGM: トータスドラゴン ~ 幸運と不運 BGM: Tortoise Dragon ~ Good Fortune and Bad Fortune BGM: ビーストメトロポリス BGM: Beast Metropolis BGM: セラミックスの杖刀人 BGM: Joutounin of Ceramics BGM: エレクトリックヘリテージ BGM: Electric Heritage BGM: 偶像に世界を委ねて ~ Idoratrize World BGM: Entrusting this World to Idols ~ Idolatrize World
Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Eagle)
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Wolf)
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Otter)
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Wolf)
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Eagle)
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM:地蔵だけが知る哀嘆 BGM: The Lamentations Known Only by Jizo BGM: ジェリーストーン BGM: Jelly Stone BGM: ロストリバー BGM: Lost River BGM: 石の赤子と水中の牛 BGM: The Stone Baby and the Submerged Bovine BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: アンロケイテッドヘル BGM: Unlocated Hell BGM: トータスドラゴン ~ 幸運と不運 BGM: Tortoise Dragon ~ Good Fortune and Bad Fortune BGM: ビーストメトロポリス BGM: Beast Metropolis BGM: セラミックスの杖刀人 BGM: Joutounin of Ceramics BGM: エレクトリックヘリテージ BGM: Electric Heritage BGM: 偶像に世界を委ねて ~ Idoratrize World BGM: Entrusting this World to Idols ~ Idolatrize World
Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Eagle)
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
100th_Black_Market - Dialogue
BGM: ルナレインボー BGM: Lunar Rainbow BGM: 妖怪フックオン BGM: Youkai Hook On BGM: ルナレインボー BGM: Lunar Rainbow BGM: あの賑やかな市場は今どこに ~ Immemorial Marketeers BGM: Where Is That Bustling Marketplace Now ~ Immemorial Marketeers BGM: 闇市場は場所を選ばない BGM: Black Markets Can Happen Anywhere, Anytime BGM: 弾幕を持て、バレットフィリア達よ BGM: Take Thy Danmaku In Hand, O Bulletphiles BGM: 100回目のブラックマーケット BGM: The Hundredth Black Market BGM: 弾幕を持て、バレットフィリア達よ BGM: Take Thy Danmaku In Hand, O Bulletphiles
Ten_Desires - Marisa's_Extra
BGM: 妖怪裏参道 BGM: Rear Temple Path of Youkai BGM: 佐渡のニッ岩 BGM: Futatsuiwa From Sado
Ten_Desires - Reimu's_Scenario
BGM: 死霊の夜桜 BGM: Night Sakura of Dead Spirits BGM: ゴーストリード BGM: Ghost Lead BGM: 妖怪寺へようこそ BGM: Welcome to the Youkai Temple BGM: 門前の妖怪小娘 BGM: The Youkai Girl Before the Gate BGM: 素敵な墓場で暮しましょ BGM: Let's Live in a Lovely Cemetery BGM: リジッドパラダイス BGM: Rigid Paradise BGM: デザイアドライブ BGM: Desire Drive BGM: 古きユアンシェン BGM: Old Yuanxian BGM: 夢殿大祀廟 BGM: The Hall of Dreams' Great Mausoleum BGM: 大神神話伝 BGM: Omiwa Legend BGM: 小さな欲望の星空 BGM: Starry Sky of Small Desires BGM: 聖徳伝説 ~ True Administrator BGM: Shoutoku Legend ~ True Administrator
Ten_Desires - Youmu's_Scenario
BGM: 死霊の夜桜 BGM: Night Sakura of Dead Spirits BGM: ゴーストリード BGM: Ghost Lead BGM: 妖怪寺へようこそ BGM: Welcome to the Youkai Temple BGM: 門前の妖怪小娘 BGM: The Youkai Girl Before the Gate BGM: 素敵な墓場で暮しましょ BGM: Let's Live in a Lovely Cemetery BGM: リジッドパラダイス BGM: Rigid Paradise BGM: デザイアドライブ BGM: Desire Drive BGM: 古きユアンシェン BGM: Old Yuanshen BGM: 夢殿大祀廟 BGM: The Hall of Dreams' Great Mausoleum BGM: 大神神話伝 BGM: Omiwa Legend BGM: 小さな欲望の星空 BGM: Starry Sky of Small Desires BGM: 聖徳伝説 ~ True Administrator BGM: Shoutoku Legend ~ True Administrator
Ten_Desires - Youmu's_Extra
BGM: 妖怪裏参道 BGM: Rear Temple Path of Youkai BGM: 佐渡のニッ岩 BGM: Futatsuiwa From Sado
Ten_Desires - Sanae's_Extra
BGM: 妖怪裏参道 BGM: Rear Temple Path of Youkai BGM: 佐渡のニッ岩 BGM: Futatsuiwa From Sado
Ten_Desires - Sanae's_Scenario
BGM: 死霊の夜桜 BGM: Night Sakura of Dead Spirits BGM: ゴーストリード BGM: Ghost Lead BGM: 妖怪寺へようこそ BGM: Welcome to the Youkai Temple BGM: 門前の妖怪小娘 BGM: The Youkai Girl Before the Gate BGM: 素敵な墓場で暮しましょ BGM: Let's Live in a Lovely Cemetery BGM: リジッドパラダイス BGM: Rigid Paradise BGM: デザイアドライブ BGM: Desire Drive BGM: 古きユアンシェン BGM: Old Yuanshen BGM: 夢殿大祀廟 BGM: The Hall of Dreams' Great Mausoleum BGM: 大神神話伝 BGM: Omiwa Legend BGM: 小さな欲望の星空 BGM: Starry Sky of Small Desires BGM: 聖徳伝説 ~ True Administrator BGM: Shoutoku Legend ~ True Administrator
Ten_Desires - Reimu's_Extra
BGM: 妖怪裏参道 BGM: Rear Temple Path of Youkai BGM: 佐渡のニッ岩 BGM: Futatsuiwa From Sado
Ten_Desires - Marisa's_Scenario
BGM: 死霊の夜桜 BGM: Night Sakura of Dead Spirits BGM: ゴーストリード BGM: Ghost Lead BGM: 妖怪寺へようこそ BGM: Welcome to the Youkai Temple BGM: 門前の妖怪小娘 BGM: The Youkai Girl Before the Gate BGM: 素敵な墓場で暮しましょ BGM: Let's Live in a Lovely Cemetery BGM: リジッドパラダイス BGM: Rigid Paradise BGM: デザイアドライブ BGM: Desire Drive BGM: 古きユアンシェン BGM: Old Yuanshen BGM: 夢殿大祀廟 BGM: The Hall of Dreams' Great Mausoleum BGM: 大神神話伝 BGM: Omiwa Legend BGM: 小さな欲望の星空 BGM: Starry Sky of Small Desires BGM: 聖徳伝説 ~ True Administrator BGM: Shoutoku Legend ~ True Administrator
Phantasmagoria_of_Flower_View - Tewi's_Scenario
BGM. おてんば恋娘の冒険 BGM. Adventure of the Tomboyish Girl in Love BGM. もう歌しか聞こえない ~ Flower Mix BGM. Deaf to all but the Song ~ Flower Mix BGM. 幽霊楽団 ~ Phantom Ensemble BGM. Phantom Band ~ Phantom Ensemble BGM. 東方妖々夢 ~ Ancient Temple BGM. Eastern Ghostly Dream ~ Ancient Temple BGM. フラワリングナイト BGM. Flowering Night BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. 春色小径 ~ Colorful Path BGM. Spring Lane ~ Colorful Path BGM. 狂気の瞳 ~ Invisible Full Moon BGM. Lunatic Eyes ~ Invisible Full Moon BGM. ポイズンボディ ~ Forsaken Doll BGM. Poison Body ~ Forsaken Doll BGM. 彼岸帰航 ~ Riverside View BGM. Higan Retour ~ Riverside View BGM. 六十年目の東方裁判 ~ Fate of Sixty Years BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Reisen's_Scenario
BGM. おてんば恋娘の冒険 BGM. Adventure of the Tomboyish Girl in Love BGM. もう歌しか聞こえない ~ Flower Mix BGM. Deaf to all but the Song ~ Flower Mix BGM. 幽霊楽団 ~ Phantom Ensemble BGM. Phantom Band ~ Phantom Ensemble BGM. 東方妖々夢 ~ Ancient Temple BGM. Eastern Ghostly Dream ~ Ancient Temple BGM. お宇佐さまの素い幡 BGM. Lord Usa's Elemental Flag BGM. 春色小径 ~ Colorful Path BGM. Spring Lane ~ Colorful Path BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. フラワリングナイト BGM. Flowering Night BGM. ポイズンボディ ~ Forsaken Doll BGM. Poison Body ~ Forsaken Doll BGM. 彼岸帰航 ~ Riverside View BGM. Higan Retour ~ Riverside View BGM. 六十年目の東方裁判 ~ Fate of Sixty Years BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Marisa's_Scenario
BGM: おてんば恋娘の冒険 BGM: Adventure of the Tomboyish Girl in Love BGM: もう歌しか聞こえない ~ Flower Mix BGM: Deaf to all but the Song ~ Flower Mix BGM: 幽霊楽団 ~ Phantom Ensemble BGM: Phantom Band ~ Phantom Ensemble BGM: お宇佐さまの素い幡 BGM: Lord Usa's Elemental Flag BGM: 狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM: 東方妖々夢 ~ Ancient Temple BGM: Eastern Ghostly Dream ~ Ancient Temple BGM: 春色小径 ~ Colorful Path BGM: Spring Lane ~ Colorful Path BGM: フラワリングナイト BGM: Flowering Night BGM: 春色小径 ~ Colorful Path BGM: Spring Lane ~ Colorful Path BGM: フラワリングナイト BGM: Flowering Night BGM: 風神少女 BGM: Wind God Girl BGM: 彼岸帰航 ~ Riverside View BGM: Higan Retour ~ Riverside View BGM: 六十年目の東方裁判 ~ Fate of Sixty Years BGM: Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: おてんば恋娘の冒険 BGM: Adventure of the Tomboyish Girl in Love BGM: もう歌しか聞こえない ~ Flower Mix BGM: Deaf to all but the Song ~ Flower Mix BGM: 幽霊楽団 ~ Phantom Ensemble BGM: Phantom Band ~ Phantom Ensemble BGM: お宇佐さまの素い幡 BGM: Lord Usa's Elemental Flag BGM: 狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM: 東方妖々夢 ~ Ancient Temple BGM: Eastern Ghostly Dream ~ Ancient Temple BGM: オリエンタルダークフライト BGM: Oriental Dark Flight BGM: フラワリングナイト BGM: Flowering Night BGM: オリエンタルダークフライト BGM: Oriental Dark Flight BGM: フラワリングナイト BGM: Flowering Night BGM: 風神少女 BGM: Wind God Girl BGM: 彼岸帰航 ~ Riverside View BGM: Higan Retour ~ Riverside View BGM: 六十年目の東方裁判 ~ Fate of Sixty Years BGM: Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Yuuka's_Scenario
BGM. おてんば恋娘の冒険 BGM. Adventure of the Tomboyish Girl in Love BGM. もう歌しか聞こえない ~ Flower Mix BGM. Deaf to all but the Song ~ Flower Mix BGM. 幽霊楽団 ~ Phantom Ensemble BGM. Phantom Band ~ Phantom Ensemble BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. フラワリングナイト BGM. Flowering Night BGM. 今昔幻想郷 ~ Flower Land BGM. Gensokyo, Past and Present ~ Flower Land BGM. お宇佐さまの素い幡 BGM. Lord Usa's Elemental Flag BGM. 東方妖々夢 ~ Ancient Temple BGM. Eastern Ghostly Dream ~ Ancient Temple BGM. 春色小径 ~ Colorful Path BGM. Spring Lane ~ Colorful Path BGM. 風神少女 BGM. Wind God Girl BGM. 彼岸帰航 ~ Riverside View BGM. Higan Retour ~ Riverside View BGM. 六十年目の東方裁判 ~ Fate of Sixty Years BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Lyrica's_Scenario
BGM. おてんば恋娘の冒険 BGM. Adventure of the Tomboyish Girl in Love BGM. もう歌しか聞こえない ~ Flower Mix BGM. Deaf to all but the Song ~ Flower Mix BGM. お宇佐さまの素い幡 BGM. Lord Usa's Elemental Flag BGM. 狂気の瞳 ~ Invisible Full Moon BGM. Lunatic Eyes ~ Invisible Full Moon BGM. フラワリングナイト BGM. Flowering Night BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. 東方妖々夢 ~ Ancient Temple BGM. Eastern Ghostly Dream ~ Ancient Temple BGM. 風神少女 BGM. Wind God Girl BGM. 今昔幻想郷 ~ Flower Land BGM. Gensokyo, Past and Present ~ Flower Land BGM. 六十年目の東方裁判 ~ Fate of Sixty Years BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Komachi's_Scenario
BGM. おてんば恋娘の冒険 BGM. Adventure of the Tomboyish Girl in Love BGM. 狂気の瞳 ~ Invisible Full Moon BGM. Lunatic Eyes ~ Invisible Full Moon BGM. お宇佐さまの素い幡 BGM. Lord Usa's Elemental Flag BGM. フラワリングナイト BGM. Flowering Night BGM. 東方妖々夢 ~ Ancient Temple BGM. Eastern Ghostly Dream ~ Ancient Temple BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. 今昔幻想郷 ~ Flower Land BGM. Gensokyo, Past and Present ~ Flower Land BGM. 彼岸帰航 ~ Riverside View BGM. Higan Retour ~ Riverside View BGM. 六十年目の東方裁判 ~ Fate of Sixty Years BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Aya's_Scenario
BGM. おてんば恋娘の冒険 BGM. Adventure of the Tomboyish Girl in Love BGM. もう歌しか聞こえない ~ Flower Mix BGM. Deaf to all but the Song ~ Flower Mix BGM. 幽霊楽団 ~ Phantom Ensemble BGM. Phantom Band ~ Phantom Ensemble BGM. フラワリングナイト BGM. Flowering Night BGM. 春色小径 ~ Colorful Path BGM. Spring Lane ~ Colorful Path BGM. お宇佐さまの素い幡 BGM. Lord Usa's Elemental Flag BGM. 狂気の瞳 ~ Invisible Full Moon BGM. Lunatic Eyes ~ Invisible Full Moon BGM. 東方妖々夢 ~ Ancient Temple BGM. Eastern Ghostly Dream ~ Ancient Temple BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. ポイズンボディ ~ Forsaken Doll BGM. Poison Body ~ Forsaken Doll BGM. 彼岸帰航 ~ Riverside View BGM. Higan Retour ~ Riverside View BGM. 六十年目の東方裁判 ~ Fate of Sixty Years BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Medicine's_Scenario
BGM. もう歌しか聞こえない ~ Flower Mix BGM. Deaf to all but the Song ~ Flower Mix BGM. 幽霊楽団 ~ Phantom Ensemble BGM. Phantom Band ~ Phantom Ensemble BGM. お宇佐さまの素い幡 BGM. Lord Usa's Elemental Flag BGM. 狂気の瞳 ~ Invisible Full Moon BGM. Lunatic Eyes ~ Invisible Full Moon BGM. 春色小径 ~ Colorful Path BGM. Spring Lane ~ Colorful Path BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. フラワリングナイト BGM. Flowering Night BGM. 今昔幻想郷 ~ Flower Land BGM. Gensokyo, Past and Present ~ Flower Land BGM. 彼岸帰航 ~ Riverside View BGM. Higan Retour ~ Riverside View BGM. 六十年目の東方裁判 ~ Fate of Sixty Years BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Youmu's_Scenario
BGM. おてんば恋娘の冒険 BGM. Adventure of the Tomboyish Girl in Love BGM. もう歌しか聞こえない ~ Flower Mix BGM. Deaf to all but the Song ~ Flower Mix BGM. 幽霊楽団 ~ Phantom Ensemble BGM. Phantom Band ~ Phantom Ensemble BGM. お宇佐さまの素い幡 BGM. Lord Usa's Elemental Flag BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. 春色小径 ~ Colorful Path BGM. Spring Lane ~ Colorful Path BGM. 狂気の瞳 ~ Invisible Full Moon BGM. Lunatic Eyes ~ Invisible Full Moon BGM. フラワリングナイト BGM. Flowering Night BGM. 風神少女 BGM. Wind God Girl BGM. 彼岸帰航 ~ Riverside View BGM. Higan Retour ~ Riverside View BGM. 六十年目の東方裁判 ~ Fate of Sixty Years BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Eiki's_Scenario
BGM. もう歌しか聞こえない ~ Flower Mix BGM. Deaf to all but the Song ~ Flower Mix BGM. おてんば恋娘の冒険 BGM. Adventure of the Tomboyish Girl in Love BGM. 狂気の瞳 ~ Invisible Full Moon BGM. Lunatic Eyes ~ Invisible Full Moon BGM. 幽霊楽団 ~ Phantom Ensemble BGM. Phantom Band ~ Phantom Ensemble BGM. 東方妖々夢 ~ Ancient Temple BGM. Eastern Ghostly Dream ~ Ancient Temple BGM. お宇佐さまの素い幡 BGM. Lord Usa's Elemental Flag BGM. フラワリングナイト BGM. Flowering Night BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. 風神少女 BGM. Wind God Girl BGM. 彼岸帰航 ~ Riverside View BGM. Higan Retour ~ Riverside View BGM. 六十年目の東方裁判 ~ Fate of Sixty Years BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Mystia's_Scenario
BGM. おてんば恋娘の冒険 BGM. Adventure of the Tomboyish Girl in Love BGM. お宇佐さまの素い幡 BGM. Lord Usa's Elemental Flag BGM. 幽霊楽団 ~ Phantom Ensemble BGM. Phantom Band ~ Phantom Ensemble BGM. 東方妖々夢 ~ Ancient Temple BGM. Eastern Ghostly Dream ~ Ancient Temple BGM. 狂気の瞳 ~ Invisible Full Moon BGM. Lunatic Eyes ~ Invisible Full Moon BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. フラワリングナイト BGM. Flowering Night BGM. 春色小径 ~ Colorful Path BGM. Spring Lane ~ Colorful Path BGM. 春色小径 ~ Colorful Path BGM. Spring Lane ~ Colorful Path BGM. ポイズンボディ ~ Forsaken Doll BGM. Poison Body ~ Forsaken Doll BGM. 今昔幻想郷 ~ Flower Land BGM. Gensokyo, Past and Present ~ Flower Land BGM. 六十年目の東方裁判 ~ Fate of Sixty Years BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Sakuya's_Scenario
BGM. おてんば恋娘の冒険 BGM. Adventure of the Tomboyish Girl in Love BGM. もう歌しか聞こえない ~ Flower Mix BGM. Deaf to all but the Song ~ Flower Mix BGM. 幽霊楽団 ~ Phantom Ensemble BGM. Phantom Band ~ Phantom Ensemble BGM. 東方妖々夢 ~ Ancient Temple BGM. Eastern Ghostly Dream ~ Ancient Temple BGM. 狂気の瞳 ~ Invisible Full Moon BGM. Lunatic Eyes ~ Invisible Full Moon BGM. 春色小径 ~ Colorful Path BGM. Spring Lane ~ Colorful Path BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. お宇佐さまの素い幡 BGM. Lord Usa's Elemental Flag BGM. ポイズンボディ ~ Forsaken Doll BGM. Poison Body ~ Forsaken Doll BGM. 彼岸帰航 ~ Riverside View BGM. Higan Retour ~ Riverside View BGM. 六十年目の東方裁判 ~ Fate of Sixty Years BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. もう歌しか聞こえない ~ Flower Mix BGM. Deaf to all but the Song ~ Flower Mix BGM. 幽霊楽団 ~ Phantom Ensemble BGM. Phantom Band ~ Phantom Ensemble BGM. フラワリングナイト BGM. Flowering Night BGM. お宇佐さまの素い幡 BGM. Lord Usa's White Flag BGM. 東方妖々夢 ~ Ancient Temple BGM. Eastern Ghostly Dream ~ Ancient Temple BGM. オリエンタルダークフライト BGM. Oriental Dark Flight BGM. 春色小径 ~ Colorful Path BGM. Spring Lane ~ Colorful Path BGM. 狂気の瞳 ~ Invisible Full Moon BGM. Lunatic Eyes ~ Invisible Full Moon BGM. 風神少女 BGM. Wind God Girl BGM. 今昔幻想郷 ~ Flower Land BGM. Gensokyo, Past and Present ~ Flower Land BGM. 六十年目の東方裁判 ~ Fate of Sixty Years BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Samidare - Extra_Scenario
BGM: Way to the West BGM: Way to the West BGM: Chicane BGM: Chicane BGM: East of Eden BGM: East of Eden BGM: r.r.R. BGM: r.r.R. BGM: Meets The Gates BGM: Meets The Gates BGM: Broken Strawberry Shortcake BGM: Broken Strawberry Shortcake
Story_of_Eastern_Wonderland - Extra_Stage
BGM: エキストララブ BGM: Extra Love BGM: 戦車むすめのみるゆめ BGM: The Tank Girl's Dream
Story_of_Eastern_Wonderland - Regular_Stages
BGM: 博麗 ~ Eastern Wind BGM: Hakurei ~ Eastern Wind BGM: She's in a temper!! BGM: She's in a temper!! BGM: End of Daylight BGM: End of Daylight BGM: やみのちから BGM: Power of Darkness BGM: 幻夢界 BGM: World of Fantasies BGM: 死を賭して BGM: Bet on Death BGM: ひもろぎ、むらさきにもえ BGM: 恋色マジック BGM: Love-coloured Magic BGM: 東方封魔録 〜幽幻乱舞 BGM: Complete Darkness BGM: Complete Darkness BGM: Complete Darkness BGM: Complete Darkness
Mystic_Square - Yuuka's_Extra
BGM:不思議の国のアリス BGM: Alice in Wonderland BGM: the Grimoire of Alice BGM: the Grimoire of Alice
Mystic_Square - Reimu's_Scenario
BGM: Dream Express BGM: Dream Express BGM: 魔法陣 ~ Magic Square BGM: Magic Square BGM: 夢想時空 BGM: Dimension of Reverie BGM: Spiritual Heaven BGM: Spiritual Heaven BGM: Romantic Children BGM: Romantic Children BGM: プラスチックマインド BGM: Plastic Mind BGM: メイプルワイズ BGM: Maple Wise BGM: 禁断の魔法 ~ Forbidden Magic BGM: Forbidden Magic BGM: 真紅の少女 ~ Crimson Dead!! BGM: Crimson Maiden ~ Crimson Dead!! BGM: 裏切りの少女 ~ Judas Kiss BGM: Treacherous Maiden ~ Judas Kiss BGM: the Last Judgement BGM: the Last Judgement BGM: 悲しき人形 ~ Doll of Misery BGM: Doll's Story ~ Doll of Misery BGM: 世界の果て ~ World's End BGM: World's End BGM: 神話幻想 ~ Infinite Being BGM: Legendary Illusion ~ Infinite Being
Mystic_Square - Reimu's_Extra
BGM: 不思議の国のアリス BGM: Alice in Wonderland BGM: the Grimoire of Alice BGM: the Grimoire of Alice
Mystic_Square - Mima's_Scenario
BGM: Dream Express
BGM: Dream Express
BGM: 魔法陣 ~ Magic Square
BGM: Magic Square
BGM: 夢想時空
BGM: Dimension of Reverie
BGM: 霊天 ~ Spiritual Heaven
BGM: Spiritual Heaven
BGM: Romantic Children
BGM: Romantic Children
BGM: プラスチックマインド
BGM: Plastic Mind
BGM: メイプルワイズ
BGM: Maple Wise
BGM: {禁断の魔法 ~ Forbidden Magic
BGM: Forbidden Magic
BGM: 真紅の少女 ~ Crimson Dead!!
BGM: Crimson Maiden ~ Crimson Dead!!
BGM: 裏切りの少女 ~ Judas Kiss
BGM: Treacherous Maiden ~ Judas Kiss
BGM: the Last Judgement
BGM: the Last Judgement
BGM: 悲しき人形 ~ Doll of Misery
BGM: Doll of Misery
BGM: 世界の果て ~ World's End
BGM: World's End
BGM: 神話幻想 ~ Infinite Being
BGM: Legendary Illusion ~ Infinite BeingMystic_Square - Mima's_Extra
BGM: 不思議の国のアリス BGM: Alice in Wonderland BGM: the Grimoire of Alice BGM: the Grimoire of Alice
Mystic_Square - Marisa's_Extra
BGM: 不思議の国のアリス BGM: Alice in Wonderland BGM: the Grimoire of Alice BGM: the Grimoire of Alice
Mystic_Square - Marisa's_Scenario
BGM: Dream Express BGM: Dream Express BGM: 魔法陣 ~ Magic Square BGM: Magic Square BGM: 夢想時空 BGM: Dimension of Reverie BGM: 霊天 ~ Spiritual Heaven BGM: Spiritual Heaven BGM: Romantic Children BGM: Romantic Children BGM: プラスチックマインド BGM: Plastic Mind BGM: メイプルワイズ BGM: Maple Wise BGM: 禁断の魔法 ~ Forbidden Magic BGM: Forbidden Magic BGM: 真紅の少女 ~ Crimson Dead!! BGM: Crimson Maiden ~ Crimson Dead!! BGM: 裏切りの少女 ~ Judas Kiss BGM: Treacherous Maiden ~ Judas Kiss BGM: the Last Judgement BGM: the Last Judgement BGM: 悲しき人形 ~ Doll of Misery BGM: Doll of Misery BGM: 世界の果て ~ World's End BGM: World's End BGM: 神話幻想 ~ Infinite Being BGM: Legendary Illusion ~ Infinite Being
Mystic_Square - Yuuka's_Scenario
BGM: Dream Express BGM: Dream Express BGM: 魔法陣 ~ Magic Square BGM: Magic Square BGM: 夢想時空 BGM: Dimension of Reverie BGM: 霊天 ~ Spiritual Heaven BGM: Spiritual Heaven BGM: Romantic Children BGM: Romantic Children BGM: プラスチックマインド BGM: Plastic Mind BGM: メイプルワイズ BGM: Maple Wise BGM: 禁断の魔法 ~ Forbidden Magic BGM: Forbidden Magic BGM: 真紅の少女 ~ Crimson Dead!! BGM: Crimson Maiden ~ Crimson Dead!! BGM: 裏切りの少女 ~ Judas Kiss BGM: Treacherous Maiden ~ Judas Kiss BGM: the Last Judgement BGM: the Last Judgement BGM: 悲しき人形 ~ Doll of Misery BGM: Doll of Misery BGM: 世界の果て ~ World's End BGM: World's End BGM: 神話幻想 ~ Infinite Being BGM: Legendary Illusion ~ Infinite Being
Perfect_Cherry_Blossom - Sakuya's_Scenario
BGM: 無何有の郷 ~ Deep Mountain BGM: Paradise ~ Deep Mountain[1] BGM: クリスタライズシルバー BGM: Crystallized Silver BGM: 遠野幻想物語 BGM: The Fantastic Tales from Tono BGM: ティアオイエツォン(withered leaf) BGM: Diao Ye Zong (withered leaf) BGM: ブクレシュティの人形師 BGM: The Doll Maker of Bucuresti BGM: 人形裁判 ~ 人の形弄びし少女 BGM: Doll Judgement ~ The Girl who Played with People's Shapes BGM: 天空の花の都 BGM: The Capital City of Flowers in the Sky BGM: 幽霊楽団 ~ Phantom Ensemble BGM: Phantom Band ~ Phantom Ensemble BGM: 東方妖々夢 ~ Ancient Temple BGM: Eastern Ghostly Dream ~ Ancient Temple BGM: 広有射怪鳥事 ~ Till when? BGM: Hiroari Shoots a Strange Bird ~ Till When?[4] BGM: アルティメットトゥルース BGM: Ultimate Truth BGM: 幽雅に咲かせ、墨染の桜 ~ Border of Life BGM: Bloom Nobly, Ink-black Cherry Blossom ~ Border of Life[7] BGM: ボーダーオブライフ BGM: Border of Life
Perfect_Cherry_Blossom - Marisa's_Extra
BGM: 妖々跋扈 BGM: Spiritual Domination BGM: 少女幻葬 ~ Necro-Fantasy BGM: A Maiden's Illusionary Funeral ~ Necro-Fantasy BGM: 妖々跋扈 ~ Who done it! BGM: Spiritual Domination ~ Who done it! BGM: ネクロファンタジア BGM: Necrofantasia
Perfect_Cherry_Blossom - Sakuya's_Extra
BGM: 妖々跋扈 BGM: Spiritual Domination BGM: 少女幻葬 ~ Necro-Fantasy BGM: A Maiden's Illusionary Funeral ~ Necro-Fantasy BGM: 妖々跋扈 ~ Who done it! BGM: Spiritual Domination ~ Who done it! BGM: ネクロファンタジア BGM: Necrofantasia
Perfect_Cherry_Blossom - Reimu's_Extra
BGM: 妖々跋扈 BGM: Spiritual Domination BGM: 少女幻葬 ~ Necro-Fantasy BGM: A Maiden's Illusionary Funeral ~ Necro-Fantasy BGM: 妖々跋扈 ~ Who done it! BGM: Spiritual Domination ~ Who done it! BGM: ネクロファンタジア BGM: Necrofantasia
Perfect_Cherry_Blossom - Marisa's_Scenario
BGM: 無何有の郷 ~ Deep Mountain BGM: Paradise ~ Deep Mountain[1] BGM: クリスタライズシルバー BGM: Crystallized Silver BGM: 遠野幻想物語 BGM: The Fantastic Tales from Tono BGM: ティアオイエツォン(withered leaf) BGM: Diao Ye Zong (withered leaf) BGM: ブクレシュティの人形師 BGM: The Doll Maker of Bucuresti BGM: 人形裁判 ~ 人の形弄びし少女 BGM: Doll Judgement ~ The Girl who Played with People's Shapes BGM: 天空の花の都 BGM: The Capital City of Flowers in the Sky BGM: 幽霊楽団 ~ Phantom Ensemble BGM: Phantom Band ~ Phantom Ensemble BGM: 東方妖々夢 ~ Ancient Temple BGM: Eastern Ghostly Dream ~ Ancient Temple BGM: 広有射怪鳥事 ~ Till when? BGM: Hiroari Shoots a Strange Bird ~ Till When?[6] BGM: アルティメットトゥルース BGM: Ultimate Truth BGM: 幽雅に咲かせ、墨染の桜 ~ Border of Life BGM: Bloom Nobly, Ink-black Cherry Blossom ~ Border of Life[8] BGM: ボーダーオブライフ BGM: Border of Life
Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: 無何有の郷 ~ Deep Mountain BGM: Paradise ~ Deep Mountain[1] BGM: クリスタライズシルバー BGM: Crystallized Silver BGM: 遠野幻想物語 BGM: The Fantastic Tales from Tono BGM: ティアオイエツォン(withered leaf) BGM: Diao Ye Zong (withered leaf) BGM: ブクレシュティの人形師 BGM: The Dollmaker of Bucuresti BGM: 人形裁判 ~ 人の形弄びし少女 BGM: Doll Judgement ~ The Girl who Played with People's Shapes BGM: 天空の花の都 BGM: The Capital City of Flowers in the Sky BGM: 幽霊楽団 ~ Phantom Ensemble BGM: Phantom Band ~ Phantom Ensemble BGM: 東方妖々夢 ~ Ancient Temple BGM: Eastern Ghostly Dream ~ Ancient Temple BGM: 広有射怪鳥事 ~ Till when? BGM: Hiroari Shoots a Strange Bird ~ Till When?[12] BGM: アルティメットトゥルース BGM: Ultimate Truth BGM: 幽雅に咲かせ、墨染の桜 ~ Border of Life BGM: Bloom Nobly, Ink-black Cherry Blossom ~ Border of Life[14] BGM: ボーダーオブライフ BGM: Border of Life
Unconnected_Marketeers - Sanae's_Scenario
BGM: 妖異達の通り雨 BGM: A Shower of Strange Occurrences BGM: 大吉キトゥン BGM: Kitten of Great Fortune BGM: 深緑に隠された断崖 BGM: The Cliff Hidden in Deep Green BGM: バンデットリィテクノロジー BGM: Banditry Technology BGM: 駒草咲くパーペチュアルスノー BGM: The Perpetual Snow of Komakusa Blossoms BGM: スモーキングドラゴン BGM: Smoking Dragon BGM: 廃れゆく産業遺構 BGM: The Obsolescent Industrial Ruins BGM: 神代鉱石 BGM: Ore from the Age of the Gods BGM: 待ちわびた逢魔が時 BGM: The Long-Awaited Oumagatoki BGM: 星降る天魔の山 BGM: Starry Mountain of Tenma BGM: ルナレインボー BGM: あの賑やかな市場は今どこに ~ Immemorial Marketeers BGM: Where is that Bustling Marketplace Now ~ Immemorial Marketeers
Unconnected_Marketeers - Reimu's_Scenario
BGM: 妖異達の通り雨 BGM: A Shower of Strange Occurrences BGM: 大吉キトゥン BGM: Kitten of Great Fortune BGM: 深緑に隠された断崖 BGM: The Cliff Hidden in Deep Green BGM: バンデットリィテクノロジー BGM: Banditry Technology BGM: 駒草咲くパーペチュアルスノー BGM: The Perpetual Snow of Komakusa Blossoms BGM: スモーキングドラゴン BGM: Smoking Dragon BGM: 廃れゆく産業遺構 BGM: The Obsolescent Industrial Ruins BGM: 神代鉱石 BGM: Ore from the Age of the Gods BGM: 待ちわびた逢魔が時 BGM: The Long-Awaited Oumagatoki BGM: 星降る天魔の山 BGM: Starry Mountain of Tenma BGM: ルナレインボー BGM: あの賑やかな市場は今どこに ~ Immemorial Marketeers BGM: Where is that Bustling Marketplace Now ~ Immemorial Marketeers
Unconnected_Marketeers - Sanae's_Extra
BGM: 幻想の地下大線路網 BGM: The Great Fantastic Underground Railway Network BGM: 龍王殺しのプリンセス BGM: The Princess Who Slays Dragon Kings
Unconnected_Marketeers - Sakuya's_Scenario
BGM: 妖異達の通り雨 BGM: A Shower of Strange Occurrences BGM: 大吉キトゥン BGM: Kitten of Great Fortune BGM: 深緑に隠された断崖 BGM: The Cliff Hidden in Deep Green BGM: バンデットリィテクノロジー BGM: Banditry Technology BGM: 駒草咲くパーペチュアルスノー BGM: The Perpetual Snow of Komakusa Blossoms BGM: スモーキングドラゴン BGM: Smoking Dragon BGM: 廃れゆく産業遺構 BGM: The Obsolescent Industrial Ruins BGM: 神代鉱石 BGM: Ore from the Age of the Gods BGM: 待ちわびた逢魔が時 BGM: The Long-Awaited Oumagatoki BGM: 星降る天魔の山 BGM: Starry Mountain of Tenma BGM: ルナレインボー BGM: あの賑やかな市場は今どこに ~ Immemorial Marketeers BGM: Where is that Bustling Marketplace Now ~ Immemorial Marketeers
Unconnected_Marketeers - Marisa's_Extra
BGM: 幻想の地下大線路網 BGM: The Great Fantastic Underground Railway Network BGM: 龍王殺しのプリンセス BGM: The Princess Who Slays Dragon Kings
Unconnected_Marketeers - Reimu's_Extra
BGM: 幻想の地下大線路網 BGM: The Great Fantastic Underground Railway Network BGM: 龍王殺しのプリンセス BGM: The Princess Who Slays Dragon Kings
Unconnected_Marketeers - Marisa's_Scenario
BGM: 妖異達の通り雨 BGM: A Shower of Strange Occurrences BGM: 大吉キトゥン BGM: Kitten of Great Fortune BGM: 深緑に隠された断崖 BGM: The Cliff Hidden in Deep Green BGM: バンデットリィテクノロジー BGM: Banditry Technology BGM: 駒草咲くパーペチュアルスノー BGM: The Perpetual Snow of Komakusa Blossoms BGM: スモーキングドラゴン BGM: Smoking Dragon BGM: 廃れゆく産業遺構 BGM: The Obsolescent Industrial Ruins BGM: 神代鉱石 BGM: Ore from the Age of the Gods BGM: 待ちわびた逢魔が時 BGM: The Long-Awaited Oumagatoki BGM: 星降る天魔の山 BGM: Starry Mountain of Tenma BGM: ルナレインボー BGM: あの賑やかな市場は今どこに ~ Immemorial Marketeers BGM: Where is that Bustling Marketplace Now ~ Immemorial Marketeers
Unconnected_Marketeers - Sakuya's_Extra
BGM: 幻想の地下大線路網 BGM: The Great Fantastic Underground Railway Network BGM: 龍王殺しのプリンセス BGM: The Princess Who Slays Dragon Kings
Shuusou_Gyoku - Extra_Scenario
BGM: シルクロードアリス BGM: Silk Road Alice BGM: 魔女達の舞踏会 ~ Magus BGM: The Witches' Ball ~ Magus BGM: 二色蓮花蝶 ~ Ancients BGM: Dichromatic Lotus Butterfly ~ Ancients
Hopeless_Masquerade - Miko's_Scenario
BGM: 人気のある場所 BGM: Popular Location BGM: 春色小径 ~ Colorful Path BGM: Spring Lane ~ Colorful Path BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: メイガスナイト BGM: Magus Night BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 時代親父とハイカラ少女 BGM: The Traditional Old Man and the Stylish Girl BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 感情の摩天楼 ~ Cosmic Mind BGM: Emotional Skyscraper ~ Cosmic Mind BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のない場所 BGM: Unpopular Location BGM: 佐渡のニッ岩 BGM: Futatsuiwa from Sado BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 幻想郷のニッ岩 BGM: Futatsuiwa from Gensokyo BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 丑三つ時の里 BGM: The Village in the Dead of Night BGM: 亡失のエモーション BGM: The Lost Emotion BGM: 本日の一面記事 BGM: Today's Front-Page Headline
Hopeless_Masquerade - Marisa's_Scenario
BGM: 人気のある場所 BGM: Popular Location BGM: 春色小径 ~ Colorful Path BGM: Spring Lane ~ Colorful Path BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 聖徳伝説 ~ True Administrator BGM: Shoutoku Legend ~ True Administrator BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のない場所 BGM: Unpopular Location BGM: 佐渡のニッ岩 BGM: Futatsuiwa from Sado BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 幻想郷のニッ岩 BGM: Futatsuiwa from Gensokyo BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 丑三つ時の里 BGM: The Village in the Dead of Night BGM: 亡失のエモーション BGM: The Lost Emotion BGM: 本日の一面記事 BGM: Today's Front-Page Headline
Hopeless_Masquerade - Kokoro's_Scenario
BGM: 人気のある場所 BGM: Popular Location BGM: 時代親父とハイカラ少女 BGM: The Traditional Old Man and the Stylish Girl BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 大神神話伝 BGM: Omiwa Legend BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: メイガスナイト BGM: Magus Night BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 幻想郷のニッ岩 BGM: Futatsuiwa from Gensokyo BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 丑三つ時の里 BGM: The Village in the Dead of Night BGM: 亡失のエモーション BGM: The Lost Emotion
Hopeless_Masquerade - Koishi's_Scenario
BGM: 人気のある場所 BGM: Popular Location BGM: 聖徳伝説 ~ True Administrator BGM: Shoutoku Legend ~ True Administrator BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 大神神話伝 BGM: Omiwa Legend BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: メイガスナイト BGM: Magus Night BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 時代親父とハイカラ少女 BGM: The Traditional Old Man and the Stylish Girl BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 佐渡のニッ岩 BGM: Futatsuiwa from Sado BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 幻想郷のニッ岩 BGM: Futatsuiwa from Gensokyo BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 丑三つ時の里 BGM: The Village in the Dead of Night BGM: 亡失のエモーション BGM: The Lost Emotion BGM: 本日の一面記事 BGM: Today's Front-Page Headline
Hopeless_Masquerade - Byakuren's_Scenario
BGM: 人気のある場所 BGM: Popular Location BGM: 大神神話伝 BGM: Omiwa Legend BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: メイガスナイト BGM: Magus Night BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 春色小径 ~ Colorful Path BGM: Spring Lane ~ Colorful Path BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 聖徳伝説 ~ True Administrator BGM: Shoutoku Legend ~ True Administrator BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のない場所 BGM: Unpopular Location BGM: 佐渡のニッ岩 BGM: Futatsuiwa from Sado BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 幻想郷のニッ岩 BGM: Futatsuiwa from Gensokyo BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 丑三つ時の里 BGM: The Village in the Dead of Night BGM: 亡失のエモーション BGM: The Lost Emotion BGM: 本日の一面記事 BGM: Today's Front-Page Headline
Hopeless_Masquerade - Nitori's_Scenario
BGM: 人気のある場所 BGM: Popular Location BGM: 感情の摩天楼 ~ Cosmic Mind BGM: Emotional Skyscraper ~ Cosmic Mind BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 時代親父とハイカラ少女 BGM: The Traditional Old Man and the Stylish Girl BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: メイガスナイト BGM: Magus Night BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 春色小径 ~ Colorful Path BGM: Spring Lane ~ Colorful Path BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のない場所 BGM: Unpopular Location BGM: 佐渡のニッ岩 BGM: Futatsuiwa from Sado BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 幻想郷のニッ岩 BGM: Futatsuiwa from Gensokyo BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 丑三つ時の里 BGM: The Village in the Dead of Night BGM: 亡失のエモーション BGM: The Lost Emotion BGM: 本日の一面記事 BGM: Today's Front-Page Headline
Imperishable_Night - Scarlet_Team's_Scenario_1
BGM: 幻視の夜 ~ Ghostly Eyes BGM: Illusionary Night ~ Ghostly Eyes BGM: 蠢々秋月 ~ Mooned Insect BGM: Wriggling Autumn Moon ~ Mooned Insect BGM: 夜雀の歌声 ~ Night Bird BGM: Song of the Night Sparrow ~ Night Bird BGM: もう歌しか聞こえない BGM: Deaf to All but the Song BGM: 懐かしき東方の血 ~ Old World BGM: Nostalgic Blood of the East ~ Old World BGM: プレインエイジア BGM: Plain Asia BGM: 永夜の報い ~ Imperishable Night BGM: Retribution for the Eternal Night ~ Imperishable Night BGM: 少女綺想曲 ~ Dream Battle BGM: Maiden's Capriccio ~ Dream Battle BGM: シンデレラケージ ~ Kagome-Kagome BGM: Cinderella Cage ~ Kagome-Kagome BGM: 狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 千年幻想郷 ~ History of the Moon BGM: Gensokyo Millennium ~ History of the Moon BGM: ヴォヤージュ 1970 BGM: Voyage 1970 BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 竹取飛翔 ~ Lunatic Princess BGM: Flight of the Bamboo Cutter ~ Lunatic Princess BGM: ヴォヤージュ1970 BGM: Voyage 1970
Hopeless_Masquerade - Reimu's_Scenario
BGM: 人気のある場所 BGM: Popular Location BGM: メイガスナイト BGM: Magus Night BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 時代親父とハイカラ少女 BGM: The Traditional Old Man and the Stylish Girl BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 大神神話伝 BGM: Omiwa Legend BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 感情の摩天楼 ~ Cosmic Mind BGM: Emotional Skyscraper ~ Cosmic Mind BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のない場所 BGM: Unpopular Location BGM: 佐渡のニッ岩 BGM: Futatsuiwa from Sado BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 幻想郷のニッ岩 BGM: Futatsuiwa from Gensokyo BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 丑三つ時の里 BGM: The Village in the Dead of Night BGM: 亡失のエモーション BGM: The Lost Emotion BGM: 本日の一面記事 BGM: Today's Front-Page Headline
Hopeless_Masquerade - Mamizou's_Scenario
BGM: 人気のある場所 BGM: Popular Location BGM: 時代親父とハイカラ少女 BGM: The Traditional Old Man and the Stylish Girl BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 大神神話伝 BGM: Omiwa Legend BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 感情の摩天楼 ~ Cosmic Mind BGM: Emotional Skyscraper ~ Cosmic Mind BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 聖徳伝説 ~ True Administrator BGM: Shoutoku Legend ~ True Administrator BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 春色小径 ~ Colorful Path BGM: Spring Lane ~ Colorful Path BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 丑三つ時の里 BGM: The Village in the Dead of Night BGM: 亡失のエモーション BGM: The Lost Emotion BGM: 本日の一面記事 BGM: Today's Front-Page Headline
Hopeless_Masquerade - Futo's_Scenario
BGM: 人気のある場所 BGM: Popular Location BGM: メイガスナイト BGM: Magus Night BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 時代親父とハイカラ少女 BGM: The Traditional Old Man and the Stylish Girl BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のない場所 BGM: Unpopular Location BGM: 佐渡のニッ岩 BGM: Futatsuiwa from Sado BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 幻想郷のニッ岩 BGM: Futatsuiwa from Gensokyo BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 丑三つ時の里 BGM: The Village in the Dead of Night BGM: 亡失のエモーション BGM: The Lost Emotion BGM: 本日の一面記事 BGM: Today's Front-Page Headline
Hopeless_Masquerade - Ichirin's_Scenario
BGM: 人気のある場所 BGM: Popular Location BGM: メイガスナイト BGM: Magus Night BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 春色小径 ~ Colorful Path BGM: Spring Lane ~ Colorful Path BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のない場所 BGM: Unpopular Location BGM: 佐渡のニッ岩 BGM: Futatsuiwa from Sado BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 人気のある場所 BGM: Popular Location BGM: 幻想郷のニッ岩 BGM: Futatsuiwa from Gensokyo BGM: 本日の一面記事 BGM: Today's Front-Page Headline BGM: 丑三つ時の里 BGM: The Village in the Dead of Night BGM: 亡失のエモーション BGM: The Lost Emotion BGM: 本日の一面記事 BGM: Today's Front-Page Headline
Banshiryuu - Hirano's_C74_Extra
BGM: Shocking Assailant BGM: Shocking Assailant BGM: Miria the Sylphid BGM: Miria the Sylphid BGM: Death Twins BGM: Death Twins BGM: 黒いゲイツ BGM: Black Gates BGM: ほっとけーき実験室 BGM: Hot Cake Laboratory BGM: Muse BGM: Muse BGM: Super I.I.G.G BGM: Super I.I.G.G
Banshiryuu - Hirano's_Scenario_(C67_version)
BGM: 戦闘空域 BGM: Combat Airspace BGM: Shocking Assailant BGM: Shocking Assailant BGM: Endless Night View BGM: Endless Night View BGM: Flamethrower BGM: Flamethrower BGM: Overtake! BGM: Overtake! BGM: Tri-Star Attack BGM: Tri-Star Attack BGM: お出迎えさせて項きます...... BGM: Please Make Me Greet You...... BGM: THE STRENGTH BGM: THE STRENGTH BGM: 強攻 BGM: Strong Attack BGM: give him a roasting BGM: give him a roasting BGM: Don't call me. BGM: Don't call me. BGM: The agonies of death BGM: The agonies of death BGM: trans-- BGM: trans--
Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: 戦闘空域 BGM: Combat Airspace BGM: Shocking Assailant BGM: Shocking Assailant BGM: Endless Night View BGM: Endless Night View BGM: Flamethrower BGM: Flamethrower BGM: Overtake! BGM: Overtake! BGM: Tri-Star Attack BGM: Tri-Star Attack BGM: 参拝者歓迎 BGM: Welcome to Anyone Who Wants to Pray BGM: 巫術乱声 BGM: Exorcism Din BGM: 強攻 BGM: Strong Attack BGM: give him a roasting BGM: give him a roasting BGM: Don't call me. BGM: Don't call me. BGM: The agonies of death BGM: The agonies of death BGM: trans-- BGM: trans--
Banshiryuu - VIVIT-r's_C74_Extra
BGM: Shocking Assailant BGM: Shocking Assailant BGM: Miria the Sylphid BGM: Miria the Sylphid BGM: Death Twins BGM: Death Twins BGM: 黒いゲイツ BGM: Black Gates BGM: ほっとけーき実験室 BGM: Hot Cake Laboratory BGM: Muse BGM: Muse BGM: Super I.I.G.G BGM: Super I.I.G.G
Imperishable_Night - Scarlet_Team's_Scenario_2
BGM: 幻視の夜 ~ Ghostly Eyes BGM: Illusionary Night ~ Ghostly Eyes BGM: 蠢々秋月 ~ Mooned Insect BGM: Wriggling Autumn Moon ~ Mooned Insect BGM: 夜雀の歌声 ~ Night Bird BGM: Song of the Night Sparrow ~ Night Bird BGM: もう歌しか聞こえない BGM: Deaf to All but the Song BGM: 懐かしき東方の血 ~ Old World BGM: Nostalgic Blood of the East ~ Old World BGM: プレインエイジア BGM: Plain Asia BGM: 永夜の報い ~ Imperishable Night BGM: Retribution for the Eternal Night ~ Imperishable Night BGM: 少女綺想曲 ~ Dream Battle BGM: Maiden's Capriccio ~ Dream Battle BGM: シンデレラケージ ~ Kagome-Kagome BGM: Cinderella Cage ~ Kagome-Kagome BGM: 狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 千年幻想郷 ~ History of the Moon BGM: Gensokyo Millennium ~ History of the Moon BGM: ヴォヤージュ 1970 BGM: Voyage 1970 BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 竹取飛翔 ~ Lunatic Princess BGM: Flight of the Bamboo Cutter ~ Lunatic Princess BGM: ヴォヤージュ1970 BGM: Voyage 1970
Double_Dealing_Character - Marisa's_Extra
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
Imperishable_Night - Magic_Team's_Scenario_1
BGM: 幻視の夜 ~ Ghostly Eyes BGM: Illusionary Night ~ Ghostly Eyes BGM: 蠢々秋月 ~ Mooned Insect BGM: Wriggling Autumn Moon ~ Mooned Insect BGM: 夜雀の歌声 ~ Night Bird BGM: Song of the Night Sparrow ~ Night Bird BGM: もう歌しか聞こえない BGM: Deaf to All but the Song BGM: 懐かしき東方の血 ~ Old World BGM: Nostalgic Blood of the East ~ Old World BGM: プレインエイジア BGM: Plain Asia BGM: 永夜の報い ~ Imperishable Night BGM: Retribution for the Eternal Night ~ Imperishable Night BGM: 少女綺想曲 ~ Dream Battle BGM: Maiden's Capriccio ~ Dream Battle BGM: シンデレラケージ ~ Kagome-Kagome BGM: Cinderella Cage ~ Kagome-Kagome BGM: 狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM: ヴォヤージュ1969 BGM: Voyage 1969 BGM: 千年幻想郷 ~ History of the Moon BGM: Gensokyo Millennium ~ History of the Moon BGM: ヴォヤージュ1970 BGM: Voyage 1970 BGM: ヴォヤージュ1969 BGM: Voyage 1969 BGM: 竹取飛翔 ~ Lunatic Princess BGM: Flight of the Bamboo Cutter ~ Lunatic Princess BGM: ヴォヤージュ1970 BGM: Voyage 1970
Fairy_Wars - Extra
BGM: ルーズレイン BGM: Loose Rain BGM: メイガスナイト BGM: Magus Night
Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: 魔法使いの憂鬱 BGM: Magician's Melancholy BGM: 恋色マスタースパーク BGM: Love-Colored Master Spark BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 万年置き傘にご注意を BGM: Beware the Umbrella Left There Forever BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 華のさかづき大江山 BGM: A Flower-Studded Sake Dish on Mt. Ooe BGM: 御柱の墓場 BGM: Cemetery of Onbashira BGM: 神さびた古戦場 BGM: The Venerable Ancient Battlefield BGM: 業火マントル BGM: Hellfire Mantle BGM: 霊知の太陽信仰 BGM: Solar Sect of Mystic Wisdom BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 強欲な獣のメメント BGM: Memento of an Avaricious Beast
Imperishable_Night - Boundary_Team's_Scenario_1
BGM: 幻視の夜 ~ Ghostly Eyes BGM: Illusionary Night ~ Ghostly Eyes BGM: 蠢々秋月 ~ Mooned Insect BGM: Wriggling Autumn Moon ~ Mooned Insect BGM: 夜雀の歌声 ~ Night Bird BGM: Song of the Night Sparrow ~ Night Bird BGM: もう歌しか聞こえない BGM: Deaf to All but the Song BGM: 懐かしき東方の血 ~ Old World BGM: Nostalgic Blood of the East ~ Old World BGM: プレインエイジア BGM: Plain Asia BGM: 永夜の報い ~ Imperishable Night BGM: Retribution for the Eternal Night ~ Imperishable Night BGM: 恋色マスタースパーク BGM: Love-Colored Master Spark BGM: シンデレラケージ ~ Kagome-Kagome BGM: Cinderella Cage ~ Kagome-Kagome BGM: 狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 千年幻想郷 ~ History of the Moon BGM: Gensokyo Millennium ~ History of the Moon BGM: ヴォヤージュ 1970 BGM: Voyage 1970 BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 竹取飛翔 ~ Lunatic Princess BGM: Flight of The Bamboo Cutter ~ Lunatic Princess BGM: ヴォヤージュ 1970 BGM: Voyage 1970
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1
BGM: 神々の見解 BGM: The Gods' Opinions BGM: 少女秘封ブラフ BGM: Girls' Secret Sealing Bluff BGM: 波数高低 ~Kayser Kaiser BGM: Wavenumber Fluctuation ~ Kayser Kaiser BGM: 朝霧のスクリーン BGM: Screen of Morning Mist BGM: 大尉の愛した数式 BGM: The Equations that the General Loved BGM: 日本中の不思記を集めて BGM: Gathering the Memorious from All Around Japan BGM: 礫塵の追憶 ~Vanishing memories BGM: Recollection of Gravel and Dust ~ Vanishing Memories BGM: 私達の見解 BGM: Our Opinions
White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1
BGM: 神々の見解 BGM: The Gods' Opinions BGM: 少女秘封ブラフ BGM: Girls' Sealing Bluff BGM: 波数高低 ~Kayser Kaiser BGM: Wavenumber Fluctuation ~ Kayser Kaiser BGM: 朝霧のスクリーン BGM: Screen of Morning Mist BGM: 大尉の愛した数式 BGM: The Equations that the General Loved BGM: 日本中の不思記を集めて BGM: Gathering the Memorious from All Around Japan BGM: 礫塵の追憶 ~Vanishing memories BGM: Recollection of Gravel and Dust ~ Vanishing Memories BGM: 私達の見解 BGM: Our Opinions
White_Names_Spoiled_Past - Sanae_and_Minayu's_Extra
BGM: 雨の鳥船神社 BGM: Rainy Torifune Shrine BGM: 緑の空のお姫様 ~Sky Garden BGM: Princess of the Green Skies ~ Sky Garden BGM: 前線の風を追い越して ~Flow Scale BGM: Pass Through the Front Line's Wind ~ Flow Scale
White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Extra
BGM: 雨の鳥船神社 BGM: Rainy Torifune Shrine BGM: 前線の風を追い越して ~Flow Scale BGM: Pass Through the Front Line's Wind ~ Flow Scale BGM: 緑の空のお姫様 ~Sky Garden BGM: Princess of the Green Skies ~ Sky Garden BGM: 緑の空のお姫様 ~Sky Garden BGM: Princess of the Green Skies ~ Sky Garden
White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1
BGM: 神々の見解 BGM: The Gods' Opinions BGM: 少女秘封ブラフ BGM: Girls' Sealing Bluff BGM: 波数高低 ~Kayser Kaiser BGM: Wavenumber Fluctuation ~ Kayser Kaiser BGM: 朝霧のスクリーン BGM: Screen of Morning Mist BGM: 大尉の愛した数式 BGM: The Equations that the General Loved BGM: 日本中の不思記を集めて BGM: Gathering the Memorious from All Around Japan BGM: 礫塵の追憶 ~Vanishing memories BGM: Recollection of Gravel and Dust ~ Vanishing Memories BGM: 私達の見解 BGM: Our Opinions
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2
BGM: 神々の見解 BGM: The Gods' Opinions BGM: 少女秘封ブラフ BGM: Girls' Secret Sealing Bluff BGM: 波数高低 ~Kayser Kaiser BGM: Wavenumber Fluctuation ~ Kayser Kaiser BGM: 朝霧のスクリーン BGM: Screen of Morning Mist BGM: 大尉の愛した数式 BGM: The Equations that the General Loved BGM: 日本中の不思記を集めて BGM: Gathering the Memorious from All Around Japan BGM: 礫塵の追憶 ~Vanishing memories BGM: Recollection of Gravel and Dust ~ Vanishing Memories BGM: 私達の見解 BGM: Our Opinions
White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2
BGM: 神々の見解 BGM: The Gods' Opinions BGM: 少女秘封ブラフ BGM: Girls' Sealing Bluff BGM: 波数高低 ~Kayser Kaiser BGM: Wavenumber Fluctuation ~ Kayser Kaiser BGM: 朝霧のスクリーン BGM: Screen of Morning Mist BGM: 大尉の愛した数式 BGM: The Equations that the General Loved BGM: 日本中の不思記を集めて BGM: Gathering the Memorious from All Around Japan BGM: 礫塵の追憶 ~Vanishing memories BGM: Recollection of Gravel and Dust ~ Vanishing Memories BGM: 私達の見解 BGM: Our Opinions
White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: 神々の見解 BGM: The Gods' Opinions BGM: 少女秘封ブラフ BGM: Girls' Sealing Bluff BGM: 波数高低 ~Kayser Kaiser BGM: Wavenumber Fluctuation ~ Kayser Kaiser BGM: 朝霧のスクリーン BGM: Screen of Morning Mist BGM: 大尉の愛した数式 BGM: The Equations that the General Loved BGM: 日本中の不思記を集めて BGM: Gathering the Memorious from All Around Japan BGM: 礫塵の追憶 ~Vanishing memories BGM: Recollection of Gravel and Dust ~ Vanishing Memories BGM: 私達の見解 BGM: Our Opinions
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Extra
BGM: 雨の鳥船神社 BGM: Rainy Torifune Shrine BGM: 緑の空のお姫様 ~Sky Garden BGM: Princess of the Green Skies ~ Sky Garden BGM: 前線の風を追い越して ~Flow Scale BGM: Pass Through the Front Line's Wind ~ Flow Scale
Concealed_the_Conclusion - Phantasm
BGM: Eternal Phantasmagoria BGM: Eternal Phantasmagoria BGM: Dream Express~Red/White BGM: Dream Express ~ Red / White
Concealed_the_Conclusion - Scenario_C
BGM: 永遠の満月 BGM: Eternal Full Moon BGM: アンティークテラー BGM: Antique Terror BGM: 西方チルドレン ~ THC Version BGM: Western Children ~ THC Version BGM: 天狗が見ている ~ Black Eyes BGM: Tengu is Watching ~ Black Eyes
Concealed_the_Conclusion - Scenario_B
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Hourai Victim BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke BGM: シンデレラケージ ~ Kagome-Kagome BGM: Cinderella Cage ~ Kagome-Kagome BGM: ヴォヤージュ1969 BGM: Voyager 1969 BGM: レトロスペクティブ京都 BGM: Retrospective Kyoto BGM: Demistify Feast BGM: Demistify Feast
Concealed_the_Conclusion - Scenario_A
BGM: 上海紅茶館 ~ Chinese Tea BGM: Shanghai Scarlet Teahouse ~ Chinese Tea BGM: 明治十七年の上海アリス BGM: Shanghai Alice of Meiji 17 [Meiji 17: The 17th year of the Meiji era, 1884] BGM: メイドと血の懐中時計 BGM: The Maid and the Pocket Watch of Blood BGM: U.N.オーエンは彼女なのか? BGM: Was She U.N. Owen? BGM: ヴワル魔法図書館 BGM: Voile, the Magic Library BGM: ラクトガール ~ 少女密室 BGM: Locked Girl ~ The Girl's Sealed Room
Concealed_the_Conclusion - Part_Two
BGM: ティアオイエツウォン BGM: Diao Ye Zong BGM: 夜が降りてくる ~ Evening Star BGM: Night Falls ~ Evening Star BGM: 青木ヶ原の伝説 BGM: Legend of Aokigahara BGM: 広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM: 53ミニッツの青い海 BGM: Blue Sea of 53 Minutes BGM: G Free ~ Final Dream BGM: G Free ~ Final Dream BGM: G Free ~ Ultimate Dream BGM: G Free ~ Ultimate Dream
Concealed_the_Conclusion - Scenario_D
BGM: 博麗 ~ Eastern Wind BGM: Hakurei ~ Eastern Wind BGM: The Legend of KAGE BGM: The Legend of KAGE BGM: 眠れる恐怖 ~ Sleeping Terror BGM: Sleeping Terror BGM: 幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM: アリスマエステラ BGM: Alice Maestra BGM: プラスチックマインド BGM: Plastic Mind
Concealed_the_Conclusion - Extra
BGM: 幻想郷ツアーへようこそ BGM: Welcome to the Gensokyo tour BGM: 御伽の国の鬼が島 ~ Missing Power BGM: 御伽の国の鬼が島 ~ Missing Power
Imperishable_Night - Boundary_Team's_Extra
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Person of Hourai BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke
Imperishable_Night - Ghost_Team's_Extra
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Person of Hourai BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke
Imperishable_Night - Ghost_Team's_Scenario_1
BGM: 幻視の夜 ~ Ghostly Eyes BGM: Illusionary Night ~ Ghostly Eyes BGM: 蠢々秋月 ~ Mooned Insect BGM: Wriggling Autumn Moon ~ Mooned Insect BGM: 夜雀の歌声 ~ Night Bird BGM: Song of the Night Sparrow ~ Night Bird BGM: もう歌しか聞こえない BGM: Deaf to All but the Song BGM: 懐かしき東方の血 ~ Old World BGM: Nostalgic Blood of the East ~ Old World BGM: プレインエイジア BGM: Plain Asia BGM: 永夜の報い ~ Imperishable Night BGM: Retribution for the Eternal Night ~ Imperishable Night BGM: 恋色マスタースパーク BGM: Love-Colored Master Spark BGM: シンデレラケージ ~ Kagome-Kagome BGM: Cinderella Cage ~ Kagome-Kagome BGM: 狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 千年幻想郷 ~ History of the Moon BGM: Gensokyo Millennium ~ History of the Moon BGM: ヴォヤージュ 1970 BGM: Voyage 1970 BGM: ヴォヤージュ 1969 BGM: Voyage 1969 BGM: 竹取飛翔 ~ Lunatic Princess BGM: Flight of the Bamboo Cutter ~ Lunatic Princess BGM: ヴォヤージュ1970 BGM: Voyage 1970
Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: 暗闇の風穴 BGM: The Dark Blowhole BGM: 封じられた妖怪 BGM: The Sealed-Away Youkai BGM: 御柱の墓場 BGM: Cemetery of Onbashira BGM: 少女綺想曲 BGM: Maiden's Capriccio BGM: 旧地獄街道を行く BGM: Walking the Streets of a Former Hell BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: 御柱の墓場 BGM: Cemetery of Onbashira BGM: キャプテンムラサ BGM: Captain Murasa BGM: 不朽の曼珠沙華 BGM: Everlasting Red Spider Lily BGM: セラフィックチキン BGM: Seraphic Chicken BGM: 大地の底、剛欲の海 BGM: Depths of the Earth, Ocean of Avarice BGM: 強欲な獣のメメント BGM: Memento of an Avaricious Beast BGM: 有機体全てのメメント ~ Memory of Fossil Energy. BGM: Memento of All Organisms ~ Memory of Fossil Energy.
Fairy_Wars - Route_A
BGM: 可愛い大戦争のリフレーン BGM: The Refrain of the Lovely Great War BGM: いたずらに命をかけて BGM: Staking Your Life on a Prank BGM: 年中夢中の好奇心 BGM: Year-Round Absorbed Curiosity BGM: いたずらに命をかけて BGM: Staking Your Life on a Prank BGM: 真夜中のフェアリーダンス BGM: A Midnight Fairy Dance BGM: 妖精大戦争 ~ Fairy Wars BGM: Great Fairy Wars ~ Fairy Wars BGM: 年中夢中の好奇心 BGM: Year-Round Absorbed Curiosity BGM: いたずらに命をかけて BGM: Staking Your Life on a Prank BGM: 真夜中のフェアリーダンス BGM: A Midnight Fairy Dance BGM: 妖精大戦争 ~ Fairy Wars BGM: Great Fairy Wars ~ Fairy Wars
Sunken_Fossil_World - Greedy_Challenge
BGM: もうドアには入れない BGM: No More Going Through Doors
Talk:Embodiment_of_Scarlet_Devil - Reimu's_Scenario
Those missing BGM translations would be nice to have...
Riverbed_Soul_Saver - Futo_and_Miko's_Phantasm
BGM: 生命無キ涜神ノ亡都 BGM: Lost Capital of Lifeless Blasphemy BGM: インヤンシーサーペント BGM: Yin-Yang-Shi Serpent
Riverbed_Soul_Saver - Reimu_and_Yukari's_Phantasm
BGM: 生命無キ涜神ノ亡都 BGM: Lost Capital of Lifeless Blasphemy BGM: インヤンシーサーペント BGM: Yin-Yang-Shi Serpent
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Extra
BGM: 深海星雲 ~ Nebura Stream BGM: Deep-Sea Nebula ~ Nebula Stream BGM: 星の源流、草薙の剣竜 BGM: Source of the Starry River, Dragon of the Grass-Mowing Sword
Riverbed_Soul_Saver - Futo_and_Miko's_Extra
BGM: 深海星雲 ~ Nebura Stream BGM: Deep-Sea Nebula ~ Nebula Stream BGM: 星の源流、草薙の剣竜 BGM: Source of the Starry River, Dragon of the Grass-Mowing Sword
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario
BGM: 背水の楽園 BGM: Backwater Paradise BGM: 六花繚乱 ~ Sakurachill Blossom BGM: Snowflakes Blooming in Profusion ~ Sakurachill Blossom BGM: クリフォトの立て橋 BGM: Bridge of Qliphoth BGM: プリティーアプリコット BGM: Pretty Apricot BGM: エーテル霧氷海 BGM: Etheric Frosty Sea BGM: 深淵のソウルイーター BGM: Soul Eater from the Abyss BGM: 銀の鍵の門を超えて BGM: Surpass the Gate of the Silver Key BGM: 歴史から消された姫君 BGM: The Princess who was Erased from History BGM: 深海に浮かぶ桃源宮 BGM: The Shangri-La Palace Floating in the Deep Sea BGM: ワールドヤマタイザー BGM: World Yamataizer BGM: 死霊の都ルルイエ BGM: R'lyeh, the Capital of the Dead BGM: 幻想国家黎明 ~ Prayer Player BGM: Fantasy Nation Daybreak ~ Prayer Player
Book_of_Star_Mythology - Reimu's_Extra
BGM: アケローン彼岸旅行 BGM: Acheron Higan Voyage BGM: 堕ちた英雄の剣 ~ Legend of Sanada BGM: Sword of the Fallen Hero ~ Legend of Sanada
Book_of_Star_Mythology - Marisa's_Extra
BGM: アケローン彼岸旅行 BGM: Acheron Higan Voyage BGM: 堕ちた英雄の剣 ~ Legend of Sanada BGM: Sword of the Fallen Hero ~ Legend of Sanada
Book_of_Star_Mythology - Sanae's_Extra
BGM: アケローン彼岸旅行 BGM: Acheron Higan Voyage BGM: 堕ちた英雄の剣 ~ Legend of Sanada BGM: Sword of the Fallen Hero ~ Legend of Sanada
The_Last_Comer - Marisa's_Extras
BGM: ご近所がロストワールド BGM: Neighborhood Lost World BGM: 神話世界の生き証人 ~ The Lost Comer BGM: Living Witness of the World of Mythology ~ The Lost Comer
The_Last_Comer - Reimu's_Extras
BGM: ご近所がロストワールド BGM: Neighborhood Lost World BGM: 神話世界の生き証人 ~ The Lost Comer BGM: Living Witness of the World of Mythology ~ The Lost Comer
The_Last_Comer - Reimu's_Scenario
BGM: 厄星の揺籠 BGM: Cradle of Misfortunate Stars BGM: 妖星に踊る羊精 BGM: Sheep Spirits Dancing Under Strange Stars BGM: 色褪せぬ紅の記憶 BGM: Memories of an Unfading Crimson BGM: フィリニオンの復活 BGM: Philinion's Resurrection BGM: 賢人のプラネタリズム BGM: The Wise Men's Planetarium BGM: エンシェントスターゲイザー BGM: Ancient Star Gazer BGM: 邪星の宴 ~ Celestial Burst BGM: Feast of Wicked Stars ~ Celestial Burst BGM: 明朝を覆う明星 BGM: The Morning Star that Hides Tomorrow's Morning BGM: 印のある者は山へ BGM: Those With the Seals, Go to the Mountain BGM: 燦々サン・ミシェル BGM: Brilliant Saint Michael BGM: 幻想ヴィア・ドロローサ BGM: Illusionary Via Dolorosa BGM: 人類救済計画 ~ The Greatest Salvation BGM: Mankind Salvation Plan ~ The Greatest Salvation
The_Last_Comer - Sakuya's_Scenario
BGM: 厄星の揺籠 BGM: Cradle of Misfortunate Stars BGM: 妖星に踊る羊精 BGM: Sheep Spirits Dancing Under Strange Stars BGM: 色褪せぬ紅の記憶 BGM: Memories of an Unfading Crimson BGM: フィリニオンの復活 BGM: Philinion's Resurrection BGM: 賢人のプラネタリズム BGM: The Wise Men's Planetarium BGM: エンシェントスターゲイザー BGM: Ancient Star Gazer BGM: 邪星の宴 ~ Celestial Burst BGM: Feast of Wicked Stars ~ Celestial Burst BGM: 明朝を覆う明星 BGM: The Morning Star that Hides Tomorrow's Morning BGM: 印のある者は山へ BGM: Those With the Seals, Go to the Mountain BGM: 燦々サン・ミシェル BGM: Brilliant Saint Michael BGM: 幻想ヴィア・ドロローサ BGM: Illusionary Via Dolorosa BGM: 人類救済計画 ~ The Greatest Salvation BGM: Mankind Salvation Plan ~ The Greatest Salvation
The_Last_Comer - Marisa's_Scenario
BGM: 厄星の揺籠 BGM: Cradle of Misfortunate Stars BGM: 妖星に踊る羊精 BGM: Sheep Spirits Dancing Under Strange Stars BGM: 色褪せぬ紅の記憶 BGM: Memories of an Unfading Crimson BGM: フィリニオンの復活 BGM: Philinion's Resurrection BGM: 賢人のプラネタリズム BGM: The Wise Men's Planetarium BGM: エンシェントスターゲイザー BGM: Ancient Star Gazer BGM: 邪星の宴 ~ Celestial Burst BGM: Feast of Wicked Stars ~ Celestial Burst BGM: 明朝を覆う明星 BGM: The Morning Star that Hides Tomorrow's Morning BGM: 印のある者は山へ BGM: Those With the Seals, Go to the Mountain BGM: 燦々サン・ミシェル BGM: Brilliant Saint Michael BGM: 幻想ヴィア・ドロローサ BGM: Illusionary Via Dolorosa BGM: 人類救済計画 ~ The Greatest Salvation BGM: Mankind Salvation Plan ~ The Greatest Salvation
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: 野原を飛んでゆく花弁の波 BGM: Petal Waves Through the Fields BGM: ゼフィランサスの検索 〜 Searching Youkai BGM: Search for the Zephyranthes ~ Searching Youkai BGM: 二つの道のエニグマ 〜 Mythical Road BGM: Two Ways' Enigma ~ Mythical Road BGM: オーバースローンフォーセス BGM: Overthrown Forces BGM: 鏡の国のサマースカイ BGM: The Summer Sky Through the Looking Glass BGM: 天国の戦場の旱魃 〜 Weather Drive BGM: Drought on the Warpath to Heaven ~ Weather Drive
Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario
BGM:ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM:妖魔夜行 BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM:玉兎と禁断の果実 ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Frantically_Forbidden_Fruit - Reimu's_Paradise_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 星条旗のピエロは彼女なのか? BGM: The Pierrot of the Star Spangled Banner was Her? BGM: 四季の華は太陽に踊る BGM: The Four Seasons' Flowers Dance in the Sun BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me
Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario
BGM:ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM:妖魔夜行 BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM:玉兎と禁断の果実 ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario
BGM:ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM:妖魔夜行 BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM:玉兎と禁断の果実 ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Frantically_Forbidden_Fruit - Marisa's_Paradise_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 星条旗のピエロは彼女なのか? BGM: The Pierrot of the Star Spangled Banner was Her? BGM: 四季の華は太陽に踊る BGM: The Four Seasons' Flowers Dance in the Sun BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me
Frantically_Forbidden_Fruit - Reisen's_Legacy_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 星条旗のピエロは彼女なのか? BGM: The Pierrot of the Star Spangled Banner was Her? BGM: 四季の華は太陽に踊る BGM: The Four Seasons' Flowers Dance in the Sun BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me
Frantically_Forbidden_Fruit - Youmu's_Paradise_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 星条旗のピエロは彼女なのか? BGM: The Pierrot of the Star Spangled Banner was Her? BGM: 四季の華は太陽に踊る BGM: The Four Seasons' Flowers Dance in the Sun BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me
Frantically_Forbidden_Fruit - Sakuya's_Paradise_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 星条旗のピエロは彼女なのか? BGM: The Pierrot of the Star Spangled Banner was Her? BGM: 四季の華は太陽に踊る BGM: The Four Seasons' Flowers Dance in the Sun BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me
Frantically_Forbidden_Fruit - Reisen's_Paradise_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 星条旗のピエロは彼女なのか? BGM: The Pierrot of the Star Spangled Banner was Her? BGM: 四季の華は太陽に踊る BGM: The Four Seasons' Flowers Dance in the Sun BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me
Frantically_Forbidden_Fruit - Marisa's_Legacy_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 星条旗のピエロは彼女なのか? BGM: The Pierrot of the Star Spangled Banner was Her? BGM: 四季の華は太陽に踊る BGM: The Four Seasons' Flowers Dance in the Sun BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me
Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:ほおずきみたいに紅い魂 BGM: A Soul as Scarlet as a Ground Cherry BGM:妖魔夜行 BGM: Apparitions Stalk the Night BGM:運河を行き交う人妖 BGM: Humans and Youkai Traversing the Canal BGM:芥川龍之介の河童 ~ Candid Friend BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend BGM:夜の鳩山を飛ぶ -Power MIX BGM: Fly Above Hatoyama at Night - Power MIX BGM:華狭間のバトルフィールド BGM: Battlefield of the Flower Threshold BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:少女綺想曲 ~ Capriccio BGM: Maiden's Capriccio BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:魔女達の舞踏会 BGM: The Witches' Ball BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:フラワリングナイト BGM: Flowering Night BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:信仰は儚き人間の為に BGM: Faith is for the Transient People BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:広有射怪鳥事 ~ Till When? BGM: Hiroari Shoots a Strange Bird ~ Till When? BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:幽夢 ~ Inanimate Dream BGM: Faint Dream ~ Inanimate Dream BGM:龍神飛至蓬莱山 ~ Oriental Mythology BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology BGM:狂気の瞳 ~ Invisible Full Moon BGM: Lunatic Eyes ~ Invisible Full Moon BGM:夜更けの表六甲 BGM: Omote-Rokkō at Night BGM:有頂天変 ~ Wonderful Heaven BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven BGM:故郷の星が映る海 BGM: The Sea Where One's Home Planet Reflects BGM:穏やかならぬ宴の兎 BGM: The Rabbit of the Unpeaceful Banquet BGM:玉兎と禁断の果実 ~ Eden's Apple. BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Frantically_Forbidden_Fruit - Sanae's_Legacy_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 星条旗のピエロは彼女なのか? BGM: The Pierrot of the Star Spangled Banner was Her? BGM: 四季の華は太陽に踊る BGM: The Four Seasons' Flowers Dance in the Sun BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me
Frantically_Forbidden_Fruit - Yuuka's_Paradise_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 星条旗のピエロは彼女なのか? BGM: The Pierrot of the Star Spangled Banner was Her? BGM: 四季の華は太陽に踊る BGM: The Four Seasons' Flowers Dance in the Sun BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me
Frantically_Forbidden_Fruit - Yuuka's_Legacy_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 星条旗のピエロは彼女なのか? BGM: The Pierrot of the Star Spangled Banner was Her? BGM: 四季の華は太陽に踊る BGM: The Four Seasons' Flowers Dance in the Sun BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me
Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario
BGM: 無何有の郷 ~ Deep Mountain BGM: Paradise ~ Deep Mountain BGM: 大迷惑少女 ~ Explosion Girl BGM: Greatly Troublesome Girl ~ Explosion Girl BGM: 妖怪裏参道 ~ Secret Technology BGM: Rear Temple Path of Youkai ~ Secret Technology BGM: 幻想郷の二ッ岩 BGM: Futatsuiwa from Gensokyo BGM: ブクレシュティの人形師 BGM: The Doll Maker of Bucuresti BGM: プラスチックマインド BGM: Plastic Mind BGM: デザイアドライブ BGM: Desire Drive BGM: ゴーストリード BGM: Ghost Lead BGM: 妖々跋扈 ~ Who done it! BGM: Spiritual Domination ~ Who done it! BGM: Night Falls ~ Evening Star BGM: Night Falls ~ Evening Star BGM: Stardust Desire BGM: Stardust Desire BGM: 亡失のエモーション ~ Tree of Life BGM: The Lost Emotion ~ Tree of Life BGM: Border of Life BGM: Border of Life
Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario
BGM: 無何有の郷 ~ Deep Mountain BGM: Paradise ~ Deep Mountain BGM: 大迷惑少女 ~ Explosion Girl BGM: Greatly Troublesome Girl ~ Explosion Girl BGM: 妖怪裏参道 ~ Secret Technology BGM: Rear Temple Path of Youkai ~ Secret Technology BGM: 幻想郷の二ッ岩 BGM: Futatsuiwa from Gensokyo BGM: ブクレシュティの人形師 BGM: The Doll Maker of Bucuresti BGM: プラスチックマインド BGM: Plastic Mind BGM: デザイアドライブ BGM: Desire Drive BGM: ゴーストリード BGM: Ghost Lead BGM: 妖々跋扈 ~ Who done it! BGM: Spiritual Domination ~ Who done it! BGM: Night Falls ~ Evening Star BGM: Night Falls ~ Evening Star BGM: Stardust Desire BGM: Stardust Desire BGM: 亡失のエモーション ~ Tree of Life BGM: The Lost Emotion ~ Tree of Life BGM: Border of Life BGM: Border of Life
Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario
BGM: Mukayu no Sato ~ Deep Mountain BGM: Paradise ~ Deep Mountain BGM: 大迷惑少女 ~ Explosion Girl BGM: Greatly Troublesome Girl ~ Explosion Girl BGM: 妖怪裏参道 ~ Secret Technology BGM: Rear Temple Path of Youkai ~ Secret Technology BGM: 幻想郷の二ッ岩 BGM: Futatsuiwa from Gensokyo BGM: ブクレシュティの人形師 BGM: The Doll Maker of Bucuresti BGM: プラスチックマインド BGM: Plastic Mind BGM: デザイアドライブ BGM: Desire Drive BGM: ゴーストリード BGM: Ghost Lead BGM: 妖々跋扈 ~ Who done it! BGM: Spiritual Domination ~ Who done it! BGM: Night Falls ~ Evening Star BGM: Night Falls ~ Evening Star BGM: Stardust Desire BGM: Stardust Desire BGM: Emotion of loss ~ Tree of Life BGM: The Lost Emotion ~ Tree of Life BGM: Border of Life BGM: Border of Life
Marine_Benefit - Sanae's_Extra
BGM: トリエステ号の足跡 BGM: Footprints of Trieste BGM: 旅人アイザックの胡蝶 BGM: The Butterfly of Isaac the Traveler
Marine_Benefit - Marisa's_Extra
BGM: トリエステ号の足跡 BGM: Footprints of Trieste BGM: 旅人アイザックの胡蝶 BGM: The Butterfly of Isaac the Traveler
Marine_Benefit - Marisa's_Scenario
BGM: 大洋の風情 ~ Fantastic Sea BGM: Grandeur of the Ocean ~ Fantastic Sea BGM: 捕らぬ狸の壷算用 BGM: The Pot Sum of an Uncaptured Raccoon BGM: 大きな水塊の眺望 BGM: Giant prospect of a Water Mass BGM: ナルコストリーム BGM: Naruko Stream BGM: 海燕の鳴動 ~ Natural Forecast BGM: Echo of a Sea Petrel ~ Natural Forecast BGM: 唄う座頭は天を仰ぎ見る BGM: The Singing Leader Looks Up to the Sky BGM: 未開拓世界 ~ インナースペース BGM: The Unexplored World ~ Inner Space BGM: サブマリン幻視幻覚 BGM: Submarine Illusion BGM: 二百海里は宴もたけなわ ~ Prayed Feast BGM: A Party's Climax 200 Nautical Miles Over the Sea ~ Prayed Feast BGM: 神造人魚は人間の夢を見るか? BGM: Could a Mermaid Dream of Being a Human? BGM: 活命の泉 BGM: Fountain of Youth BGM: 深海七花 ~ Forgotten Benefit BGM: Seven Flowers of the Deep Sea ~ Forgotten Benefit
Marine_Benefit - Reimu's_Scenario
BGM: 大洋の風情 ~ Fantastic Sea BGM: Grandeur of the Ocean ~ Fantastic Sea BGM: 捕らぬ狸の壷算用 BGM: The Pot Sum of an Uncaptured Raccoon BGM: 大きな水塊の眺望 BGM: Giant prospect of a Water Mass BGM: ナルコストリーム BGM: Naruko Stream BGM: 海燕の鳴動 ~ Natural Forecast BGM: Echo of a Sea Petrel ~ Natural Forecast BGM: 唄う座頭は天を仰ぎ見る BGM: The Singing Leader Looks Up to the Sky BGM: 未開拓世界 ~ インナースペース BGM: The Unexplored World ~ Inner Space BGM: サブマリン幻視幻覚 BGM: Submarine Illusion BGM: 二百海里は宴もたけなわ ~ Prayed Feast BGM: A Party's Climax 200 Nautical Miles Over the Sea ~ Prayed Feast BGM: 神造人魚は人間の夢を見るか? BGM: Could a Mermaid Dream of Being a Human? BGM: 活命の泉 BGM: Fountain of Youth BGM: 深海七花 ~ Forgotten Benefit BGM: Seven Flowers of the Deep Sea ~ Forgotten Benefit
The_Alternative_Age - Reimu's_Extra
BGM: 過去の花 ~ Fairy of Flower BGM: Flower of Past Days ~ Fairy of Flower BGM: 華胥の夢 BGM: Dream of Huaxu
The_Alternative_Age - Marisa's_Scenario
BGM: 西方チルドレン BGM: Western Children BGM: 宵闇の魔術師 BGM: Magician of the Evening Darkness BGM: Witch of Love Potion BGM: Witch of Love Potion BGM: Magic of Life BGM: Magic of Life BGM: 白银の夢幻回廊 BGM: Fantasy Corridor of White Silver BGM: 輪廻妖精 ~ Reincarnation BGM: Fairy of Samsara ~ Reincarnation BGM: EnigmatiqueDoll ~ 怪人形 BGM: Enigmatique Doll (sic)~ Phantom Shape BGM: 騒霊サーカス ~ Reverie BGM: Mechanical Circus ~ Reverie BGM: 魔術師メリー BGM: Mary the Magician BGM: 少女秘封倶楽部 BGM: Girls' Secret Sealing Club BGM: 夜のデンデラ野を逝く BGM: Wandering about a Ghostly Field in the Night BGM: 妖月幻化 BGM: Strange Bird of the Moon, Illusionary Cat BGM: 妖月幻化 ~ Alternative Age BGM: Strange Bird of the Moon, Illusionary Cat ~ Alternative Age
The_Alternative_Age - Marisa's_Extra
BGM: 過去の花 ~ Fairy of Flower BGM: Flower of Past Days ~ Fairy of Flower BGM: 華胥の夢 BGM: Dream of Huaxu
The_Alternative_Age - Reimu's_Scenario
BGM: 白银の夢幻回廊 BGM: Fantasy Corridor of White Silver BGM: 輪廻妖精 ~ Reincarnation BGM: Fairy of Samsara ~ Reincarnation BGM: EnigmatiqueDoll ~ 怪人形 BGM: Enigmatique Doll [sic] ~ Phantom Shape BGM: 騒霊サーカス ~ Reverie BGM: Poltergeist Circus[1] ~ Reverie BGM: 魔術師メリー BGM: Mary, the Magician BGM: 少女秘封倶楽部 BGM: Girls' Secret Sealing Club BGM: 夜のデンデラ野を逝く BGM: Wandering about a Ghostly Field in the Night BGM: 妖月幻化 BGM: Strange Bird of the Moon, Illusionary Cat BGM: 妖月幻化 ~ Alternative Age BGM:Strange Bird of the Moon, Illusionary Cat ~ Alternative Age
Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Extra
BGM: 灵空猝灭雨 BGM: Quenching Rain of Mystical Skies BGM: 富士大人之侘 ~我心匪石~ BGM: Elegance of Fuji-san ~My Heart is No Stone~
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Extra
BGM: 灵空猝灭雨 BGM: Quenching Rain of Mystical Skies BGM: 富士大人之侘 ~我心匪石~ BGM: Elegance of Fuji-san ~My Heart is No Stone~
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario
BGM: 幽竹远梦 BGM: Distant Dream of Silent Bamboo BGM: 辉夜的指引 BGM: Kaguya's Guidance BGM: 流月牧夜歌 BGM: Flowing Moon Night Pastorale BGM: 失色的镜像世界 BGM: Colourless Mirror World BGM: 林间烟雨小令 BGM: Little Tune for a Drizzle in the Forest BGM: Imaginary History BGM: Imaginary History BGM: 万华镜之箱 BGM: Box of Kaleidoscopes BGM: Mystery is Your Mirage BGM: Mystery is Your Mirage BGM: 樱花飞舞的浅间神社 BGM: Cherry Blossoms Dancing on Asama Shrine BGM: 徒名草之道 ~神宫寺祈前哨战~ BGM: Sakura Path ~Jinguuji Skirmish~ BGM: 华彩飞扬 ~ Indomitable Kagura BGM: Flying Colours ~ Indomitable Kagura BGM: 一念的繁华 BGM: One Moment's Splendour BGM: 春彩动荡之寂 ~盛樱之世~ BGM: Impermanence of Spring-Colour Ripples ~World of Blooming Sakura~
Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Extra
BGM: 灵空猝灭雨 BGM: Quenching Rain of Mystical Skies BGM: 富士大人之侘 ~我心匪石~ BGM: Elegance of Fuji-san ~My Heart is No Stone~
Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario
BGM: 幽竹远梦 BGM: Distant Dream of Ghostly Bamboo BGM: 辉夜的指引 BGM: Kaguya's Guidance BGM: 流月牧夜歌 BGM: Flowing Moon Night Pastorale BGM: 失色的镜像世界 BGM: Colourless Mirror World BGM: 林间烟雨小令 BGM: Little Tune for a Drizzle in the Forest BGM: 魔女和亡灵的★Dance Party BGM: The Witch and the Ghost's ★ Dance Party BGM: 万华镜之箱 BGM: Box of Kaleidoscopes BGM: Mystery is Your Mirage BGM: Mystery is Your Mirage BGM: 樱花飞舞的浅间神社 BGM: Cherry Blossoms Dancing on Asama Shrine BGM: 徒名草之道 ~神宫寺祈前哨战~ BGM: Sakura Path ~Jinguuji Skirmish~ BGM: 华彩飞扬 ~ Indomitable Kagura BGM: Flying Colours ~ Indomitable Kagura BGM: 一念的繁华 BGM: One Moment's Splendour BGM: 春彩动荡之寂 ~盛樱之世~ BGM: Impermanence of Spring-Coloured Ripples ~World of Blooming Sakura~
Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: 幽竹远梦 BGM: Distant Dream of Silent Bamboo BGM: 辉夜的指引 BGM: Kaguya's Guidance BGM: 流月牧夜歌 BGM: Flowing Moon Night Pastorale BGM: 失色的镜像世界 BGM: Colourless Mirror World BGM: 林间烟雨小令 BGM: Little Tune for a Drizzle in the Forest BGM: 彼岸之云 结界之梦 BGM: Higan Clouds, Border Dreams BGM: 万华镜之箱 BGM: Box of Kaleidoscopes BGM: Mystery is Your Mirage BGM: Mystery is Your Mirage BGM: 樱花飞舞的浅间神社 BGM: Cherry Blossoms Dancing on Asama Shrine BGM: 徒名草之道 ~神宫寺祈前哨战~ BGM: Sakura Path ~Jinguuji Skirmish~ BGM: 华彩飞扬 ~ Indomitable Kagura BGM: Flying Colours ~ Indomitable Kagura BGM: 一念的繁华 BGM: One Moment's Splendour BGM: 春彩动荡之寂 ~盛樱之世~ BGM: Impermanence of Spring-Coloured Ripples ~World of Blooming Sakura~
Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario
BGM: ミスティフライト BGM: Misty Flight BGM: 小さな小さな賢将 BGM: A Tiny, Tiny, Clever Commander BGM: スカイルーイン BGM: Sky Ruin BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 輝く天空の向こう側へ BGM: Toward the Other Side of the Glittering Skies BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: メタルバレットヘル BGM: Metal Bullet Hell BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd Eye BGM: 砂漠に佇む伽藍堂 BGM: A Garan Temple Standing in the Desert BGM: モンジュドウキーパーズ BGM: Monjudou Keepers BGM: 地底の奥深く BGM: In the Innermost Depths of the Earth BGM: 善財童子の讃嘆 ~ Bubbling Imaginary Treasures BGM: Extolment of Shancai Tongzi ~ Bubbling Imaginary Treasures
Bubbling_Imaginary_Treasures - Reimu_and_Suika's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
Bubbling_Imaginary_Treasures - Sanae_and_Suwako's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Extra
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario
BGM: ミスティフライト BGM: Misty Flight BGM: 小さな小さな賢将 BGM: A Tiny, Tiny, Clever Commander BGM: スカイルーイン BGM: Sky Ruin BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 輝く天空の向こう側へ BGM: Toward the Other Side of the Glittering Skies BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: メタルバレットヘル BGM: Metal Bullet Hell BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd Eye BGM: 砂漠に佇む伽藍堂 BGM: A Garan Temple Standing in the Desert BGM: モンジュドウキーパーズ BGM: Monjudou Keepers BGM: 地底の奥深く BGM: In the Innermost Depths of the Earth BGM: 善財童子の讃嘆 ~ Bubbling Imaginary Treasures BGM: Extolment of Shancai Tongzi ~ Bubbling Imaginary Treasures
Shining_Shooting_Star - Koishi's_Scenario
BGM: 宁静夏夜的微风 BGM: A Peaceful Summer Night's Breeze BGM: 喧闹吧!在这不眠之夜 BGM: Let's Make Some Noise on this Sleepless Night! BGM: 灯火竹林 BGM: Lamplights in the Bamboo Forest BGM: 疾风闪电 BGM: Gale Lightning BGM: 木灵们的夏夜祭 BGM: The Kodama's Summer Night Festival BGM: 青柳传说 BGM: Legend of Aoyagi BGM: 万花世界的光与影 BGM: Light and Shadows in the Kaleidoscope World BGM: 镜中的幻象 BGM: Illusions in the Mirror BGM: 记忆中遥远的星星 BGM: Eternal Stars in Memories BGM: 引燃夜空的星火 BGM: Meteors Illuminating the Night Sky BGM: 银河的彼方 BGM: The Other Side of the Galaxy BGM: 琉璃星之愿 ~ Dream Star's Wish BGM: The Lapis Lazuli Star's Wish ~ Dream Star's Wish BGM: 闪耀在世界尽头 BGM: A Flash of Light at the World's End
Shining_Shooting_Star - Marisa's_Scenario
BGM: 宁静夏夜的微风 BGM: A Peaceful Summer Night's Breeze BGM: 喧闹吧!在这不眠之夜 BGM: Let's Make Some Noise on this Sleepless Night! BGM: 灯火竹林 BGM: Lamplights in the Bamboo Forest BGM: 疾风闪电 BGM: Gale Lightning BGM: 木灵们的夏夜祭 BGM: The Kodama's Summer Night Festival BGM: 青柳传说 BGM: Legend of Aoyagi BGM: 万花世界的光与影 BGM: Light and Shadows in the Kaleidoscope World BGM: 镜中的幻象 BGM: Illusions in the Mirror BGM: 记忆中遥远的星星 BGM: Eternal Stars in Memories BGM: 引燃夜空的星火 BGM: Meteors Illuminating the Night Sky BGM: 银河的彼方 BGM: The Other Side of the Galaxy BGM: 琉璃星之愿 ~ Dream Star's Wish BGM: The Lapis Lazuli Star's Wish ~ Dream Star's Wish BGM: 闪耀在世界尽头 BGM: A Flash of Light at the World's End
Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario
BGM: 宁静夏夜的微风 BGM: A Peaceful Summer Night's Breeze BGM: 喧闹吧!在这不眠之夜 BGM: Let's Make Some Noise on this Sleepless Night! BGM: 灯火竹林 BGM: Lamplights in the Bamboo Forest BGM: 疾风闪电 BGM: Gale Lightning BGM: 木灵们的夏夜祭 BGM: The Kodama's Summer Night Festival BGM: 青柳传说 BGM: Legend of Aoyagi BGM: 万花世界的光与影 BGM: Light and Shadows in the Kaleidoscope World BGM: 镜中的幻象 BGM: Illusions in the Mirror BGM: 记忆中遥远的星星 BGM: Eternal Stars in Memories BGM: 引燃夜空的星火 BGM: Meteors Illuminating the Night Sky BGM: 银河的彼方 BGM: The Other Side of the Galaxy BGM: 琉璃星之愿 ~ Dream Star's Wish BGM: The Lapis Lazuli Star's Wish ~ Dream Star's Wish BGM: 闪耀在世界尽头 BGM: A Flash of Light at the World's End
The_Shattered_Sky - Sanae's_Extra
BGM: Down the Familiar Path of Dusk BGM: Lingering Light ~ Magician's Conviction
The_Shattered_Sky - Reimu's_Phantasm
BGM: Along the Path of Darkness BGM: Void of Light ~ Magician's Requiem
The_Shattered_Sky - Marisa's_Extra
BGM: Down the Familiar Path of Dusk BGM: Lingering Light ~ Magician's Conviction
The_Shattered_Sky - Reimu's_Extra
BGM: Down the Familiar Path of Dusk BGM: Lingering Light ~ Magician's Conviction
The_Shattered_Sky - Reimu's_Scenario
BGM: Fairy Swarm ~ Endless Parade BGM: Lunatic Rabbit ~ Red Alert BGM: Flight over the Forest ~ Condensed Wilderness BGM: Fire Spirit of the Forest ~ First Ignition BGM: Peaceful Tribulation ~ Over the Garden BGM: Sakura Radiance ~ Blooming Elegance BGM: Melancholy of the Cloud Painted Sky BGM: Arcing Fault ~ Reaching the Flash Boundary BGM: Where the Stars Fall BGM: Jewel of the Flashing Scales BGM: Cyclone of the Space Sky BGM: Tengu's Cyclone of the Sky BGM: Power of the Shattering Sky BGM: Pieces of the Sky
The_Shattered_Sky - Marisa's_Phantasm
BGM: Along the Path of Darkness BGM: Void of Light ~ Magician's Requiem
The_Shattered_Sky - Sanae's_Heaven
BGM: From Earth to Heaven BGM: Tenacity of the Youthful Divinity
The_Shattered_Sky - Sanae's_Phantasm
BGM: Along the Path of Darkness BGM: Void of Light ~ Magician's Requiem
The_Shattered_Sky - Marisa's_Scenario
BGM: Fairy Swarm ~ Endless Parade BGM: Lunatic Rabbit ~ Red Alert BGM: Flight over the Forest ~ Condensed Wilderness BGM: Fire Spirit of the Forest ~ First Ignition BGM: Peaceful Tribulation ~ Over the Garden BGM: Sakura Radiance ~ Blooming Elegance BGM: Melancholy of the Cloud Painted Sky BGM: Arcing Fault ~ Reaching the Flash Boundary BGM: Where the Stars Fall BGM: Jewel of the Flashing Scales BGM: Cyclone of the Space Sky BGM: Tengu's Cyclone of the Sky BGM: Power of the Shattering Sky BGM: Pieces of the Sky
The_Shattered_Sky - Reimu's_Heaven
BGM: From Earth to Heaven BGM: Tenacity of the Youthful Divinity
The_Shattered_Sky - Sanae's_Scenario
BGM: Fairy Swarm ~ Endless Parade BGM: Lunatic Rabbit ~ Red Alert BGM: Flight over the Forest ~ Condensed Wilderness BGM: Fire Spirit of the Forest ~ First Ignition BGM: Peaceful Tribulation ~ Over the Garden BGM: Sakura Radiance ~ Blooming Elegance BGM: Melancholy of the Cloud Painted Sky BGM: Arcing Fault ~ Reaching the Flash Boundary BGM: Where the Stars Fall BGM: Jewel of the Flashing Scales BGM: Cyclone of the Space Sky BGM: Tengu's Cyclone of the Sky BGM: Power of the Shattering Sky BGM: Pieces of the Sky
The_Shattered_Sky - Marisa's_Heaven
BGM: From Earth to Heaven BGM: Tenacity of the Youthful Divinity
Sapphire_Panlogism - Hecatia's_Extra
BGM: おぼれる者の心象風景 ~ Sinking Star BGM: A Drowning Man's Dreamscape ~ Sinking Star BGM: アーケインアウグル BGM: Arcane Augur
Sapphire_Panlogism - Reimu's_Extra
BGM: おぼれる者の心象風景 ~ Sinking Star BGM: A Drowning Man's Dreamscape ~ Sinking Star BGM: アーケインアウグル BGM: Arcane Augur
Sapphire_Panlogism - Reimu's_Scenario
BGM: 空は近きに彷徨う BGM: The Sky Wanders Closer BGM: 白波から上がるフェー達 BGM: Fae Rising from Seafoam BGM: 蒼き天涯を眠り通る BGM: Seeping Through the Blue Canopy BGM: ピンクサイレンスの誓い BGM: Vow of Pink Silence BGM: 巫女の尻尾を追うマーメイド BGM: A Mermaid Chasing a Shrine Maiden's Tail BGM: 雲に座っているキルケ― BGM: Circe Sitting in the Clouds BGM: 中ノ鳥島ノ怠惰ナ砂 BGM: Lazy Sands of Nakanotorishima BGM: 綿津見の和太鼓デリュージ BGM: Watatsumi's Wadaiko Deluge BGM: 恐怖の鎖への抗戦は空振り BGM: Futile is the Fight Against the Fetters of Fear BGM: プリマドンナの焼け翼 ~ Walpurgis Nightmare BGM: The Primadonna's Burnt Wings ~ Walpurgis Nightmare BGM: カリスト・マトリックス BGM: Callisto Matrix BGM: 蒼玉母船 ~ Thalassic Izanami BGM: Sapphire Mothership ~ Thalassic Izanami BGM: アンテディルビアンマザーシップ BGM: Antediluvian Mothership
Sapphire_Panlogism - Shou's_Scenario
BGM: 空は近きに彷徨う BGM: The Sky Wanders Closer BGM: 白波から上がるフェー達 BGM: Fae Rising from Seafoam BGM: 蒼き天涯を眠り通る BGM: Seeping Through the Blue Canopy BGM: ピンクサイレンスの誓い BGM: Vow of Pink Silence BGM: 巫女の尻尾を追うマーメイド BGM: A Mermaid Chasing a Shrine Maiden's Tail BGM: 雲に座っているキルケ― BGM: Circe Sitting in the Clouds BGM: 中ノ鳥島ノ怠惰ナ砂 BGM: Lazy Sands of Nakanotorishima BGM: 綿津見の和太鼓デリュージ BGM: Watatsumi's Wadaiko Deluge BGM: 恐怖の鎖への抗戦は空振り BGM: Futile is the Fight Against the Fetters of Fear BGM: プリマドンナの焼け翼 ~ Walpurgis Nightmare BGM: The Primadonna's Burnt Wings ~ Walpurgis Nightmare BGM: カリスト・マトリックス BGM: Callisto Matrix BGM: 蒼玉母船 ~ Thalassic Izanami BGM: Sapphire Mothership ~ Thalassic Izanami BGM: アンテディルビアンマザーシップ BGM: Antediluvian Mothership
Sapphire_Panlogism - Hecatia's_Scenario
BGM: 空は近きに彷徨う BGM: The Sky Wanders Closer BGM: 白波から上がるフェー達 BGM: Fae Rising from Seafoam BGM: 蒼き天涯を眠り通る BGM: Seeping Through the Blue Canopy BGM: ピンクサイレンスの誓い BGM: Vow of Pink Silence BGM: 巫女の尻尾を追うマーメイド BGM: A Mermaid Chasing a Shrine Maiden's Tail BGM: 雲に座っているキルケ― BGM: Circe Sitting in the Clouds BGM: 中ノ鳥島ノ怠惰ナ砂 BGM: Lazy Sands of Nakanotorishima BGM: 綿津見の和太鼓デリュージ BGM: Watatsumi's Wadaiko Deluge BGM: 恐怖の鎖への抗戦は空振り BGM: Futile is the Fight Against the Fetters of Fear BGM: プリマドンナの焼け翼 ~ Walpurgis Nightmare BGM: The Primadonna's Burnt Wings ~ Walpurgis Nightmare BGM: カリスト・マトリックス BGM: Callisto Matrix BGM: 蒼玉母船 ~ Thalassic Izanami BGM: Sapphire Mothership ~ Thalassic Izanami BGM: アンテディルビアンマザーシップ BGM: Antediluvian Mothership
Wonderful_Waking_World - Reimu's_Extra
BGM: Nameless Discord BGM: Nameless Discord BGM: Summertime Rhapsody of a Dying World BGM: Summertime Rhapsody of a Dying World
Wonderful_Waking_World - Marisa's_Scenario
BGM: Magical Hopalong Cassidy Station BGM: Magical Hopalong Cassidy Station BGM: AN APPLE DISASTER!! BGM: AN APPLE DISASTER!! BGM: The Broken Sky Reflected by the Lake ~ Crustacean Parade BGM: The Broken Sky Reflected by the Lake ~ Crustacean Parade BGM: The Crab's One Way Cycle ~ Sideways Motion BGM: The Crab's One Way Cycle ~ Sideways Motion BGM: The Colorful Maiden, Through the Colorless World BGM: The Colorful Maiden, Through the Colorless World BGM: Fantastic Friend BGM: Fantastic Friend BGM: Another Catastrophe in Bhavaagra BGM: Another Catastrophe in Bhavaagra BGM: Out of Place Magical Girl BGM: Out of Place Magical Girl BGM: All of the World's Creatures BGM: All of the World's Creatures BGM: Blessed Pathfinder BGM: Blessed Pathfinder BGM: 40 Days Condensed into One BGM: 40 Days Condensed into One BGM: From Beginning to End ~ Drunken Prophet BGM: From Beginning to End ~ Drunken Prophet
Wonderful_Waking_World - Marisa's_Extra
BGM: Nameless Discord BGM: Nameless Discord BGM: Summertime Rhapsody of a Dying World BGM: Summertime Rhapsody of a Dying World
Wonderful_Waking_World - Sanae's_Extra
BGM: Nameless Discord BGM: Nameless Discord BGM: Summertime Rhapsody of a Dying World BGM: Summertime Rhapsody of a Dying World
Wonderful_Waking_World - Reimu's_Scenario
BGM: Magical Hopalong Cassidy Station BGM: Magical Hopalong Cassidy Station BGM: AN APPLE DISASTER!! BGM: AN APPLE DISASTER!! BGM: The Broken Sky Reflected by the Lake ~ Crustacean Parade BGM: The Broken Sky Reflected by the Lake ~ Crustacean Parade BGM: The Crab's One Way Cycle ~ Sideways Motion BGM: The Crab's One Way Cycle ~ Sideways Motion BGM: The Colorful Maiden, Through the Colorless World BGM: The Colorful Maiden, Through the Colorless World BGM: Fantastic Friend BGM: Fantastic Friend BGM: Another Catastrophe in Bhavaagra BGM: Another Catastrophe in Bhavaagra BGM: Out of Place Magical Girl BGM: Out of Place Magical Girl BGM: All of the World's Creatures BGM: All of the World's Creatures BGM: Blessed Pathfinder BGM: Blessed Pathfinder BGM: 40 Days Condensed into One BGM: 40 Days Condensed into One BGM: From Beginning to End ~ Drunken Prophet BGM: From Beginning to End ~ Drunken Prophet
Wonderful_Waking_World - Sanae's_Scenario
BGM: Magical Hopalong Cassidy Station BGM: Magical Hopalong Cassidy Station BGM: AN APPLE DISASTER!! BGM: AN APPLE DISASTER!! BGM: The Broken Sky Reflected by the Lake ~ Crustacean Parade BGM: The Broken Sky Reflected by the Lake ~ Crustacean Parade BGM: The Crab's One Way Cycle ~ Sideways Motion BGM: The Crab's One Way Cycle ~ Sideways Motion BGM: The Colorful Maiden, Through the Colorless World BGM: The Colorful Maiden, Through the Colorless World BGM: Fantastic Friend BGM: Fantastic Friend BGM: Another Catastrophe in Bhavaagra BGM: Another Catastrophe in Bhavaagra BGM: Out of Place Magical Girl BGM: Out of Place Magical Girl BGM: All of the World's Creatures BGM: All of the World's Creatures BGM: Blessed Pathfinder BGM: Blessed Pathfinder BGM: 40 Days Condensed into One BGM: 40 Days Condensed into One BGM: From Beginning to End ~ Drunken Prophet BGM: From Beginning to End ~ Drunken Prophet
Over_the_Developed_Eden - Sumireko's_Scenario
BGM: 博麗キラーストリート BGM: Hakurei Killer Street BGM: 座敷少女のわらべ唄 BGM: Zashiki Girl's Nursery Song BGM: カルバートクルーズ BGM: Culvert Cruise BGM: 私こそはアーバン・カッパ BGM: I'm an Urban Kappa, For Sure! BGM: 扶桑の密林 BGM: Jungle of Fusang BGM: 愛の歪 ~ Crimson Stalker. BGM: Love Distortion ~ Crimson Stalker. BGM: オーバーレイクハイウェイ BGM: Over Lake Highway BGM: 患わし邪魔のプリンセス BGM: Princess of Blighted Obstruction BGM: 夜光煌めく江城閣 BGM: Koujoukaku, Glimmering with Nocturnal Light BGM: 遥かに照らせ、荒城の月 BGM: Shine Into the Distance, Moon of the Ruined Castle BGM: ケテルの大樹 BGM: Great Tree of Keter BGM: 東頌歌~Only Edo,Gong J-ode! BGM: Eastern Anthem ~ Only Edo, Gong J-ode!
Over_the_Developed_Eden - Shinmyoumaru's_Phantom
BGM: 湖水のビーストロード BGM: Lakewater Beast Road BGM: ファントムオブスカイセイバー BGM: Phantom of the Sky Sabre
Over_the_Developed_Eden - Marisa's_Scenario
BGM: 博麗キラーストリート BGM: Hakurei Killer Street BGM: 座敷少女のわらべ唄 BGM: Zashiki Girl's Nursery Song BGM: カルバートクルーズ BGM: Culvert Cruise BGM: 私こそはアーバン・カッパ BGM: I'm an Urban Kappa, For Sure! BGM: 扶桑の密林 BGM: Jungle of Fusang BGM: 愛の歪 ~ Crimson Stalker. BGM: Love Distortion ~ Crimson Stalker. BGM: オーバーレイクハイウェイ BGM: Over Lake Highway BGM: 患わし邪魔のプリンセス BGM: Princess of Blighted Obstruction BGM: 夜光煌めく江城閣 BGM: Koujoukaku, Glimmering with Nocturnal Light BGM: 遥かに照らせ、荒城の月 BGM: Shine Into the Distance, Moon of the Ruined Castle BGM: ケテルの大樹 BGM: Great Tree of Keter BGM: 東頌歌~Only Edo,Gong J-ode! BGM: Eastern Anthem ~ Only Edo, Gong J-ode!
Over_the_Developed_Eden - Shinmyoumaru's_Scenario
BGM: 博麗キラーストリート BGM: Hakurei Killer Street BGM: 座敷少女のわらべ唄 BGM: Zashiki Girl's Nursery Song BGM: カルバートクルーズ BGM: Culvert Cruise BGM: 私こそはアーバン・カッパ BGM: I'm an Urban Kappa, For Sure! BGM: 扶桑の密林 BGM: Jungle of Fusang BGM: 愛の歪 ~ Crimson Stalker. BGM: Love Distortion ~ Crimson Stalker. BGM: オーバーレイクハイウェイ BGM: Over Lake Highway BGM: 患わし邪魔のプリンセス BGM: Princess of Blighted Obstruction BGM: 夜光煌めく江城閣 BGM: Koujoukaku, Glimmering with Nocturnal Light BGM: 遥かに照らせ、荒城の月 BGM: Shine Into the Distance, Moon of the Ruined Castle BGM: ケテルの大樹 BGM: Great Tree of Keter BGM: 東頌歌~Only Edo,Gong J-ode! BGM: Eastern Anthem ~ Only Edo, Gong J-ode!
Over_the_Developed_Eden - Reimu's_Scenario
BGM: 博麗キラーストリート BGM: Hakurei Killer Street BGM: 座敷少女のわらべ唄 BGM: Zashiki Girl's Nursery Song BGM: カルバートクルーズ BGM: Culvert Cruise BGM: 私こそはアーバン・カッパ BGM: I'm an Urban Kappa, For Sure! BGM: 扶桑の密林 BGM: Jungle of Fusang BGM: 愛の歪 ~ Crimson Stalker. BGM: Love Distortion ~ Crimson Stalker. BGM: オーバーレイクハイウェイ BGM: Over Lake Highway BGM: 患わし邪魔のプリンセス BGM: Princess of Blighted Obstruction BGM: 夜光煌めく江城閣 BGM: Koujoukaku, Glimmering with Nocturnal Light BGM: 遥かに照らせ、荒城の月 BGM: Shine Into the Distance, Moon of the Ruined Castle BGM: ケテルの大樹 BGM: Great Tree of Keter BGM: 東頌歌~Only Edo,Gong J-ode! BGM: Eastern Anthem ~ Only Edo, Gong J-ode!
Over_the_Developed_Eden - Sumireko's_Extra
BGM: あゝ遥かなる聖域紀行 BGM: Ah, Distant Sanctuary Travelogue BGM: ディープヒストリア[1] BGM: Deep Historia
Over_the_Developed_Eden - Marisa's_Phantom
BGM: 湖水のビーストロード BGM: Lakewater Beast Road BGM: ファントムオブスカイセイバー BGM: Phantom of the Sky Sabre
Over_the_Developed_Eden - Shinmyoumaru's_Extra
BGM: あゝ遥かなる聖域紀行 BGM: Ah, Distant Sanctuary Travelogue BGM: ディープヒストリア [2] BGM: Deep Historia
Over_the_Developed_Eden - Reimu's_Extra
BGM: あゝ遥かなる聖域紀行 BGM: Ah, Distant Sanctuary Travelogue BGM: ディープヒストリア[1] BGM: Deep Historia
Over_the_Developed_Eden - Marisa's_Extra
BGM: あゝ遥かなる聖域紀行 BGM: Ah, Distant Sanctuary Travelogue BGM: ディープヒストリア[1] BGM: Deep Historia
Over_the_Developed_Eden - Reimu's_Phantom
BGM: 湖水のビーストロード BGM: Lakewater Beast Road BGM: ファントムオブスカイセイバー BGM: Phantom of the Sky Sabre
Over_the_Developed_Eden - Sumireko's_Phantom
BGM: 湖水のビーストロード BGM: Lakewater Beast Road BGM: ファントムオブスカイセイバー BGM: Phantom of the Sky Sabre
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: 潮騒の小路 BGM: Alleyway of Roaring Waves BGM: 流転する古代信仰 BGM: An Ever-Shifting Ancient Faith BGM: 夕焼けに弾を撒け BGM: Spread Bullets Over the Sunset BGM: 栗鼠は電気鼠の夢を見るか? BGM: Do Squirrels Dream of Electric Rodents? BGM: ネフィリムの呼び声 BGM: Cry of the Nephilim BGM: 月下の策謀 ~ Angelic Night BGM: Machinations Under the Moon ~ Angelic Night BGM: タービュランスタービン BGM: Turbulence Turbine BGM: 天夢流星 ~ Royal Monster BGM: Tenmu Meteor ~ Royal Monster BGM: ミルキーブロードウェイ BGM: Milky Broadway BGM: 1110年目の飛梅伝説 BGM: The 1110th Year's Legend of Tobiume BGM: 言霊の霊廟 BGM: Spirit Mausoleum of the Spirit of Language BGM: 天満たす御霊 ~ Lightning Word BGM: Sky-Filling Departed Spirit ~ Lightning Word BGM: 幻光歳華 ~ Infinity Lightning BGM: Fantastic Light, Ancient Flowers ~ Infinity Lightning
Little_Doll_Queen - Medicine's_Scenario
BGM: 人偶們所踏上的荒野 ~ Theatrical Release BGM: The Wilderness Walked Along by Dolls ~ Theatrical Release BGM: 純真的守護者木偶 BGM: Pristine Guardian Puppet BGM: 被詛咒的花園實驗室 BGM: Cursed Garden Laboratory BGM: 拉帕其尼的劇毒花園 ~ Erosion Mental BGM: Rappacchini’s Garden of Lethal Poisons ~ Erosion Mental BGM: 鈴集空想童話 ~ Sparkling Quixotic Forest BGM: Fantastic Tale of Convallection~ Sparkling Quixotic Forest 夢想蜂昀 ~ BGM: Fancy Swallower BGM: Yume Beeing ~ Fancy Swallower
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: 人偶們所踏上的荒野 ~ Theatrical ReleaseBGM: 人形たちが切り開く荒野 ~ Theatrical Release BGM: The Wilderness Walked Along by Dolls ~ Theatrical Release BGM: 純真的守護者木偶BGM: 純粋なるガーディアンパペット BGM: Pristine Guardian Puppet BGM: 被詛咒的花園實驗室BGM: 呪われたガーデンラボ BGM: Cursed Garden Laboratory BGM: 拉帕其尼的劇毒花園 ~ Erosion MentalBGM: ラパチーニの劇毒花畑 ~ Erosion Mental BGM: Rappacchini’s Garden of Lethal Poisons ~ Erosion Mental BGM: 鈴集空想童話 ~ Sparkling Quixotic ForestBGM: 鈴集空想童話 ~ Sparkling Quixotic Forest BGM: Fantastic Tale of Convallection~ Sparkling Quixotic Forest BGM: 夢想蜂紜 ~ Fancy SwallowerBGM: 夢想蜂紜 ~ Fancy Swallower BGM: Yume Beeing ~ Fancy Swallower BGM: 無名的純潔 ~ Embryo's RequiemBGM: 無名のイノセンス ~ Embryo's Requiem BGM: Nameless Innocence ~ Embryo's Requiem BGM: ConvAriaコンバアリア BGM: ConvAria BGM: Doll’s Never-Abandoned Dream
Touhou_Luna_Nights - Sakuya's_Extra
BGM: 赤より紅い夢 開始BGM: おてんば恋娘 開始BGM: 少女綺想曲 開始BGM: 少女綺想曲 BGM: ほおずきみたいに紅い魂
Touhou_Luna_Nights - Sakuya's_Scenario
BGM: 月時計 ~ ルナ・ダイアル 開始BGM: 明治十七年の上海アリス BGM: メイドと血の懐中時計 開始BGM: 恋色マスタースパーク BGM: ヴワル魔法図書館 開始BGM: ラクトガール BGM: ツェペシュの幼き末裔 開始BGM: 亡き王女の為のセプテット BGM: フラワリングナイト 開始BGM: 芥川龍之介の河童 開始BGM: U.N.オーエンは彼女なのか? BGM: ナイト・オブ・ナイツ BGM: 紅楼 ~ Eastern Dream...
Terminus_of_Unreal_Darkside - Reimu's_Scenario
BGM: 幅優先世界樹探検 BGM: Breadth-First Yggdrasil Expedition BGM: 描線上の画竜点睛 ~ Irisu Magicka BGM: Dragon's Ascent Above the Graphed Line ~ Irisu Magicka BGM: 日常生活が無意味となった人里 BGM: The Village Where Day to Day Has Become Meaningless BGM: 糖源郷の事実上の女王 ~ Sweets & Buster! BGM: De Facto Queen of Sugari-la ~ Sweets & Buster! BGM: 雪景球で捉えられし御伽噺 BGM: A Fairytale Caught in a Snowglobe BGM: 神懸かってる黄金の脚光、此処に登場 BGM: The Deity's Golden Spotlight Enters Here BGM: 神懸かってる白夜の騎士、此処に降臨 BGM: The Deity's White Knight of the Midnight Sun Descends Here
Glory_of_Deep_Skies - Marisa's_Scenario
BGM: 蒼穹下ツアーへようこそ BGM: Welcome to the Subsky Tour BGM: 恥ずかしがり屋な五位鷺のプロミネンス BGM: Prominence of a Shy Heron BGM: 蒼き天涯を眠り通る BGM: Madman's Tavern of the Dream World BGM: スターダストシャンブラー BGM: Stardust Shambler BGM: 夢想の大城カダス BGM: Kadath, the Giant Castle of Dreams BGM: 見捨てられし神々を夢に求めて BGM: Dreamquest of the Forsaken Gods BGM: 夢想の大城カダス BGM: Kadath, the Giant Castle of Dreams BGM: 見捨てられし神々を夢に求めて BGM: Dreamquest of the Forsaken Gods BGM: 夢想の大城カダス BGM: Kadath, the Giant Castle of Dreams BGM: 見捨てられし神々を夢に求めて BGM: Dreamquest of the Forsaken Gods BGM: アザトースの中庭へ BGM: Into the Courts of Azathoth BGM: 原始の混沌の狂神 ~ Ethereal Paradise BGM: Insane God of the Primordial Chaos ~ Ethereal Paradise BGM: 旧支配者の永命約束 ~ AZOTH BGM: The Old Ones' Promise of Eternal Life ~ AZOTH
Glory_of_Deep_Skies - Reimu's_Extra
BGM: 天国の大河を越えて BGM: Crossing the River of Heaven BGM: 大空を支配した竜神の宝石 ~ Quintessential Fragments BGM: Jewel of the Sky-Ruling Dragon God ~ Quintessential Fragments
Ultimate_Vitality_of_Imagination - Aya's_Extra
BGM: 秋雪一夜落山林 BGM: Autumn Snow Falling in a Mountain Forest Overnight BGM: 隐世的超人 ~ Hidden Desire BGM: Hidden Superhuman ~ Hidden Desire
Ultimate_Vitality_of_Imagination - Reimu's_Scenario
BGM: 看不透的雾霭 BGM: Unascertainable Mist BGM: 流光溢彩之降临 BGM: The Coming of Brilliant Lights and Vibrant Colors BGM: Erratic Swing BGM: Erratic Swing BGM: 迷迷糊糊的时空表演 BGM: Bewildering Space-Time Show BGM: 浮向远空的云与心 BGM: Clouds and Hearts Floating Toward the Sky BGM: 飞驰于天空的废铁浪漫 BGM: The Romance of Scrap Iron Flying in the Sky BGM: 神思,融于星夜 BGM: A State of Mind, Melding Into the Starry Night BGM: 远方的指引者 BGM: A Guide from Afar BGM: 在变幻莫测的境界中漂流的意识坠向中心 BGM: A Consciousness Drifting in an Ever-Fluctuating Boundary Falls Towards the Center BGM: 万物凝心的太阳使者 BGM: Solar Envoy Who Attracts the Hearts of All BGM: 穿越纷繁的虚与实 BGM: Falsity and Truth That Pierce Through Complexity BGM: 空想信仰的神造耀光 ~ Effulgent World of Consciousness BGM: Divinely-Created Radiance of Imaginary Faith ~ Effulgent World of Consciousness BGM: 神欲的无限未来 BGM: The Unlimited Future of Divine Desire BGM: 空想信仰的神造耀光 ~ Effulgent World of Consciousness BGM: Divinely-Created Radiance of Imaginary Faith ~ Effulgent World of Consciousness BGM: 神欲的无限未来 BGM: The Unlimited Future of Divine Desire
Ultimate_Vitality_of_Imagination - Reimu's_Extra
BGM: 秋雪一夜落山林 BGM: Autumn Snow Falling in a Mountain Forest Overnight BGM: 隐世的超人 ~ Hidden Desire BGM: Hidden Superhuman ~ Hidden Desire
Infinite_Blade_Pavilion - Youmu's_Extra
BGM: 根の国のレイライン BGM: Underworld Ley Line BGM: 子午線を割る逆鱗 ~ Dragon's Dream BGM: Meridian-Splitting Reverse Scale ~ Dragon's Dream
Infinite_Blade_Pavilion - Reimu's_Extra
BGM: 根の国のレイライン BGM: Underworld Ley Line BGM: 子午線を割る逆鱗 ~ Dragon's Dream BGM: Meridian-Splitting Reverse Scale ~ Dragon's Dream
Infinite_Blade_Pavilion - Youmu's_Scenario
BGM: 紅き黎明に歌垣を BGM: Gather and Sing in the Scarlet Dawn BGM: 古の六歌仙 ~Love letter from ? BGM: Six Poetry Immortals of Old ~Love letter from ? BGM: 吹き荒ぶ風を突き抜けて BGM: Pierce Through the Raging Winds BGM: 不吹堂の飛威綱 BGM: Flying Izuna of the Unblowing Temple BGM: 暗闇に舞え、石の花吹雪 BGM: Dance in the Darkness, Falling Stone Cherry Blossoms BGM: 影絶つ速さのサラブレッド BGM: Thoroughbred of Shadow-Severing Speed BGM: 伽藍の霊殿 ~ Hollow Mansion BGM: A Mausoleum as Vast as a Garan Temple ~ Hollow Mansion BGM: スターヴカラミティー BGM: Starve Calamity BGM: タタラ・ザ・ファーネース BGM: Tatara the Furnace BGM: 桔梗塚伝説 ~ Black Ventus BGM: Legend of Kikyouzuka ~ Black Ventus BGM: 鋼は炎より生じて大地に還る BGM: Steel is Born from Flame, and Returns to the Earth BGM: 軍神五兵の反逆者 ~ REBELLION God Force BGM: Rebel of the War God's Five Weapons ~ REBELLION God Force
Infinite_Blade_Pavilion - Reimu's_Scenario
BGM: 紅き黎明に歌垣を BGM: Gather and Sing in the Scarlet Dawn BGM: 古の六歌仙 ~Love letter from ? BGM: Six Poetry Immortals of Old ~Love letter from ? BGM: 吹き荒ぶ風を突き抜けて BGM: Pierce Through the Raging Winds BGM: 不吹堂の飛威綱 BGM: Flying Izuna of the Unblowing Temple BGM: 暗闇に舞え、石の花吹雪 BGM: Dance in the Darkness, Falling Stone Cherry Blossoms BGM: 影絶つ速さのサラブレッド BGM: Thoroughbred of Shadow-Severing Speed BGM: 伽藍の霊殿 ~ Hollow Mansion BGM: A Mausoleum as Vast as a Garan Temple ~ Hollow Mansion BGM: スターヴカラミティー BGM: Starve Calamity BGM: タタラ・ザ・ファーネース BGM: Tatara the Furnace BGM: 桔梗塚伝説 ~ Black Ventus BGM: Legend of Kikyouzuka ~ Black Ventus BGM: 鋼は炎より生じて大地に還る BGM: Steel is Born from Flame, and Returns to the Earth BGM: 軍神五兵の反逆者 ~ REBELLION God Force BGM: Rebel of the War God's Five Weapons ~ REBELLION God Force
Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: 紅き黎明に歌垣を BGM: Gather and Sing in the Scarlet Dawn BGM: 古の六歌仙 ~Love letter from ? BGM: Six Poetry Immortals of Old ~Love letter from ? BGM: 吹き荒ぶ風を突き抜けて BGM: Pierce Through the Raging Winds BGM: 不吹堂の飛威綱 BGM: Flying Izuna of the Unblowing Temple BGM: 暗闇に舞え、石の花吹雪 BGM: Dance in the Darkness, Falling Stone Cherry Blossoms BGM: 影絶つ速さのサラブレッド BGM: Thoroughbred of Shadow-Severing Speed BGM: 伽藍の霊殿 ~ Hollow Mansion BGM: A Mausoleum as Vast as a Garan Temple ~ Hollow Mansion BGM: スターヴカラミティー BGM: Starve Calamity BGM: タタラ・ザ・ファーネース BGM: Tatara the Furnace BGM: 桔梗塚伝説 ~ Black Ventus BGM: Legend of Kikyouzuka ~ Black Ventus BGM: 鋼は炎より生じて大地に還る BGM: Steel is Born from Flame, and Returns to the Earth BGM: 軍神五兵の反逆者 ~ REBELLION God Force BGM: Rebel of the War God's Five Weapons ~ REBELLION God Force
Fantastic_Danmaku_Festival - Sanae's_Extra
BGM: 百年少女怪谈 The mystery BGM: Strange Tales of the Centenarian Girls ~ The mystery BGM: 淋满鲜血的还有谁呢 Who cares BGM: Is There Anyone Else Covered in Fresh Blood? ~ Who cares
Fantastic_Danmaku_Festival - Patchouli's_Scenario
BGM: 散落的烛光 Candlelight BGM: Scattered Candlelight ~ Candlelight BGM: 黑暗少女 Dark girl BGM: Maiden of Darkness ~ Dark girl BGM: 湖面的冰之曲 The rhythm of ice BGM: Song of the Ice on the Lake's Surface ~ The rhythm of ice BGM: 妖精背水一战 A dare BGM: Fairy's Last Stand ~ A dare BGM: 东方梦之馆 East castle BGM: Eastern House of Dreams ~ East castle BGM: 风卷残云 Kongfu storm BGM: Strong Wind Scatters the Clouds ~ Kongfu storm BGM: 沉睡中的大图书馆 The library in silence BGM: The Sleeping Great Library ~ The library in silence BGM: 华丽的恶魔之舞 The little devil dance BGM: Charismatic Dance of the Devil ~ The little devil dance BGM: 时钟走廊 Flowing time BGM: Corridor of Time ~ Flowing time BGM: 钟楼战场 Bell tower BGM: Bell Tower Battlefield ~ Bell tower BGM: 绯月之主 The master of red moon BGM: Master of the Scarlet Moon ~ The master of red moon BGM: 无尽的命运 Endless fate BGM: Endless Fate ~ Endless fate
Fantastic_Danmaku_Festival - Reimu's_Extra
BGM: 百年少女怪谈 The mystery BGM: Strange Tales of the Centenarian Girls ~ The mystery BGM: 淋满鲜血的还有谁呢 Who cares BGM: Is There Anyone Else Covered in Fresh Blood? ~ Who cares
Fantastic_Danmaku_Festival - Sanae's_Scenario
BGM: 散落的烛光 Candlelight BGM: Scattered Candlelight ~ Candlelight BGM: 黑暗少女 Dark girl BGM: Maiden of Darkness ~ Dark girl BGM: 湖面的冰之曲 The rhythm of ice BGM: Song of the Ice on the Lake's Surface ~ The rhythm of ice BGM: 妖精背水一战 A dare BGM: Fairy's Last Stand ~ A dare BGM: 东方梦之馆 East castle BGM: Eastern House of Dreams ~ East castle BGM: 风卷残云 Kongfu storm BGM: Strong Wind Scatters the Clouds ~ Kongfu storm BGM: 沉睡中的大图书馆 The library in silence BGM: The Slumbering Great Library ~ The library in silence BGM: 华丽的恶魔之舞 The little devil dance BGM: Charismatic Dance of the Devil ~ The little devil dance BGM: 时钟走廊 Flowing time BGM: Corridor of Time ~ Flowing time BGM: 钟楼战场 Bell tower BGM: Bell Tower Battlefield ~ Bell tower BGM: 绯月之主 The master of red moon BGM: Master of the Scarlet Moon ~ The master of red moon BGM: 无尽的命运 Endless fate BGM: Endless Fate ~ Endless fate
Fantastic_Danmaku_Festival - Marisa's_Extra
BGM: 百年少女怪谈 The mystery BGM: Strange Tales of the Centenarian Girls ~ The mystery BGM: 淋满鲜血的还有谁呢 Who cares BGM: Is There Anyone Else Covered in Fresh Blood? ~ Who cares
Fantastic_Danmaku_Festival - Marisa's_Scenario
BGM: 散落的烛光 Candlelight BGM: Scattered Candlelight ~ Candlelight BGM: 黑暗少女 Dark girl BGM: Maiden of Darkness ~ Dark girl BGM: 湖面的冰之曲 The rhythm of ice BGM: Song of the Ice on the Lake's Surface ~ The rhythm of ice BGM: 妖精背水一战 A dare BGM: Fairy's Last Stand ~ A dare BGM: 东方梦之馆 East castle BGM: Eastern House of Dreams ~ East castle BGM: 风卷残云 Kongfu storm BGM: Strong Wind Scatters the Clouds ~ Kongfu storm BGM: 沉睡中的大图书馆 The library in silence BGM: The Slumbering Great Library ~ The library in silence BGM: 华丽的恶魔之舞 The little devil dance BGM: Charismatic Dance of the Devil ~ The little devil dance BGM: 时钟走廊 Flowing time BGM: Corridor of Time ~ Flowing time BGM: 钟楼战场 Bell tower BGM: Bell Tower Battlefield ~ Bell tower BGM: 绯月之主 The master of red moon BGM: Master of the Scarlet Moon ~ The master of red moon BGM: 无尽的命运 Endless fate BGM: Endless Fate ~ Endless fate
Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 散落的烛光 Candlelight BGM: Scattered Candlelight ~ Candlelight BGM: 黑暗少女 Dark girl BGM: Maiden of Darkness ~ Dark girl BGM: 湖面的冰之曲 The rhythm of ice BGM: Song of the Ice on the Lake's Surface ~ The rhythm of ice BGM: 妖精背水一战 A dare BGM: Fairy's Last Stand ~ A dare BGM: 东方梦之馆 East castle BGM: Eastern House of Dreams ~ East castle BGM: 风卷残云 Kongfu storm BGM: Strong Wind Scatters the Clouds ~ Kongfu storm BGM: 沉睡中的大图书馆 The library in silence BGM: The Slumbering Great Library ~ The library in silence BGM: 华丽的恶魔之舞 The little devil dance BGM: Charismatic Dance of the Devil ~ The little devil dance BGM: 时钟走廊 Flowing time BGM: Corridor of Time ~ Flowing time BGM: 钟楼战场 Bell tower BGM: Bell Tower Battlefield ~ Bell tower BGM: 绯月之主 The master of red moon BGM: Master of the Scarlet Moon ~ The master of red moon BGM: 无尽的命运 Endless fate BGM: Endless Fate ~ Endless fate
Servants_of_Harvest_Wish - Ryouko's_Extra
BGM: 曼珠と沙華の神隠し ~ by any other name BGM: Spiriting Away of Manju and Saka ~ by any other name BGM: 藻女のマインドゲーム BGM: Mikuzume's Mind Game
Servants_of_Harvest_Wish - Marisa's_Scenario
BGM: 金色の太陽と雲色の地平線 BGM: The Golden Sun and the Cloud-Coloured Horizon BGM: キュムロニンバスグリマス BGM: Cumulonimbus Grimace BGM: 人獣夕行 BGM: Evening Parade of Humans and Beasts BGM: よさこいフォックストロット BGM: Yosakoi Foxtrot BGM: 森の花にご用心 BGM: Beware the Forest's Flowers BGM: 夜咲きツバキ ~ Heart of the Swarm BGM: Night-Blooming Camellia ~ Heart of the Swarm BGM: 星海の風波 BGM: Windy Waves of a Starry Sea BGM: ネメシスの魔法人形 BGM: Poppet of Nemesis BGM: 聖な神社 俗な巫女 (Ruby Version) BGM: A Profane Shrine Maiden in a Sacred Shrine (Ruby Version) BGM: 対決!如意宝珠の試練 BGM: Showdown! Trial of the Wish-Fulfilling Jewel BGM: 聖な神社 俗な巫女 (Sapphire Version) BGM: A Profane Shrine Maiden in a Sacred Shrine (Sapphire Version) BGM: 対決!如意宝珠の試練 BGM: Showdown! Trial of the Wish-Fulfilling Jewel BGM: ヴルペクラ・エト・アンサー BGM: Vulpecula et Anser BGM: 日出観月 ~ Best Wishes BGM: Rising Sun Moon Viewing ~ Best Wishes BGM: Master of Harvest Wish BGM: Master of Harvest Wish
Servants_of_Harvest_Wish - Marisa's_Extra
BGM: 曼珠と沙華の神隠し ~ by any other name BGM: Spiriting Away of Manju and Saka ~ by any other name BGM: 藻女のマインドゲーム BGM: Mikuzume's Mind Game
Servants_of_Harvest_Wish - Ryouko's_Scenario
BGM: 金色の太陽と雲色の地平線 BGM: The Golden Sun and the Cloud-Coloured Horizon BGM: キュムロニンバスグリマス BGM: Cumulonimbus Grimace BGM: 人獣夕行 BGM: Evening Parade of Humans and Beasts BGM: よさこいフォックストロット BGM: Yosakoi Foxtrot BGM: 森の花にご用心 BGM: Beware the Forest's Flowers BGM: 夜咲きツバキ ~ Heart of the Swarm BGM: Night-Blooming Camellia ~ Heart of the Swarm BGM: 星海の風波 BGM: Windy Waves of a Starry Sea BGM: ネメシスの魔法人形 BGM: Poppet of Nemesis BGM: 聖な神社 俗な巫女 (Ruby Version) BGM: A Profane Shrine Maiden in a Sacred Shrine (Ruby Version) BGM: 対決!如意宝珠の試練 BGM: Showdown! Trial of the Wish-Fulfilling Jewel BGM: 聖な神社 俗な巫女 (Sapphire Version) BGM: A Profane Shrine Maiden in a Sacred Shrine (Sapphire Version) BGM: 対決!如意宝珠の試練 BGM: Showdown! Trial of the Wish-Fulfilling Jewel BGM: ヴルペクラ・エト・アンサー BGM: Vulpecula et Anser BGM: 日出観月 ~ Best Wishes BGM: Rising Sun Moon Viewing ~ Best Wishes BGM: Master of Harvest Wish BGM: Master of Harvest Wish
Servants_of_Harvest_Wish - Reimu's_Extra
BGM: 曼珠と沙華の神隠し ~ by any other name BGM: Spiriting Away of Manju and Saka ~ by any other name BGM: 藻女のマインドゲーム BGM: Mikuzume's Mind Game
Servants_of_Harvest_Wish - Sanae's_Scenario
BGM: 金色の太陽と雲色の地平線 BGM: The Golden Sun and the Cloud-Coloured Horizon BGM: キュムロニンバスグリマス BGM: Cumulonimbus Grimace BGM: 人獣夕行 BGM: Evening Parade of Humans and Beasts BGM: よさこいフォックストロット BGM: Yosakoi Foxtrot BGM: 森の花にご用心 BGM: Beware the Forest's Flowers BGM: 夜咲きツバキ ~ Heart of the Swarm BGM: Night-Blooming Camellia ~ Heart of the Swarm BGM: 星海の風波 BGM: Windy Waves of a Starry Sea BGM: ネメシスの魔法人形 BGM: Poppet of Nemesis BGM: 聖な神社 俗な巫女 (Ruby Version) BGM: A Profane Shrine Maiden in a Sacred Shrine (Ruby Version) BGM: 対決!如意宝珠の試練 BGM: Showdown! Trial of the Wish-Fulfilling Jewel BGM: 聖な神社 俗な巫女 (Sapphire Version) BGM: A Profane Shrine Maiden in a Sacred Shrine (Sapphire Version) BGM: 対決!如意宝珠の試練 BGM: Showdown! Trial of the Wish-Fulfilling Jewel BGM: ヴルペクラ・エト・アンサー BGM: Vulpecula et Anser BGM: 日出観月 ~ Best Wishes BGM: Rising Sun Moon Viewing ~ Best Wishes BGM: Master of Harvest Wish BGM: Master of Harvest Wish
Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: 金色の太陽と雲色の地平線 BGM: The Golden Sun and the Cloud-Coloured Horizon BGM: キュムロニンバスグリマス BGM: Cumulonimbus Grimace BGM: 人獣夕行 BGM: Evening Parade of Humans and Beasts BGM: よさこいフォックストロット BGM: Yosakoi Foxtrot BGM: 森の花にご用心 BGM: Beware the Forest's Flowers BGM: 夜咲きツバキ ~ Heart of the Swarm BGM: Night-Blooming Camellia ~ Heart of the Swarm BGM: 星海の風波 BGM: Windy Waves of a Starry Sea BGM: ネメシスの魔法人形 BGM: Poppet of Nemesis BGM: 聖な神社 俗な巫女 (Ruby Version) BGM: A Profane Shrine Maiden in a Sacred Shrine (Ruby Version) BGM: 対決!如意宝珠の試練 BGM: Showdown! Trial of the Wish-Fulfilling Jewel BGM: 聖な神社 俗な巫女 (Sapphire Version) BGM: A Profane Shrine Maiden in a Sacred Shrine (Sapphire Version) BGM: 対決!如意宝珠の試練 BGM: Showdown! Trial of the Wish-Fulfilling Jewel BGM: ヴルペクラ・エト・アンサー BGM: Vulpecula et Anser BGM: 日出観月 ~ Best Wishes BGM: Rising Sun Moon Viewing ~ Best Wishes BGM: Master of Harvest Wish BGM: Master of Harvest Wish
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: 青空の積乱雲 BGM: Cumulonimbus Clouds in the Blue Sky BGM: 常夜神の嘲り BGM: Ridicule of the Evernight God BGM: オールシーズン・ミスチーフ BGM: All Season Mischief BGM: 妖精達より愛を込めて BGM: With Love from the Fairies BGM: Voyage_of_Frigate BGM: Voyage of Frigate BGM: ピエロの夢 BGM: Pierrot's Dream
Abyss_Soul_Lotus - Byakuren_and_Miko's_Extra
BGM: 被遗忘的无名者 BGM: The Forgotten Nameless One BGM: 不灭之魂 ~ Everlasting Volition
Abyss_Soul_Lotus - Reimu_and_Yukari's_Extra
BGM: 被遗忘的无名者 BGM: The Forgotten Nameless One BGM: 不灭之魂 ~ Everlasting Volition
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario
BGM: Icy Blossom, Icy Dream BGM: Icy Blossom, Icy Dream BGM: 冰与雪的灵动 BGM: Cleverness of Ice and Snow BGM: 悔恨凝结之路 BGM: The Road Where Remorse Condenses BGM: 暗之花,吹来夜之香 BGM: The Flower of Shadow Brings the Fragrance of Night BGM: 开不尽的雪莲华 BGM: Endlessly Blooming Snow Lotus Flowers BGM: 雪兔的踪迹 ~ Nowhere but Everywhere BGM: Tracks of the Snow Hare ~ Nowhere but Everywhere BGM: 少女所见的深渊风景 BGM: The Scene of the Abyss the Girl Saw BGM: 空漠的黑与白 ~ Double Sickle of Death BGM: 沉没八万由甸的叹息 BGM: Lamentations Submerging 80000 Yojana BGM: 以太虚无论 BGM: 溺于罪海之魂 BGM: Spiritual Soul Drowning in the Sea of Sin BGM: 不死之花 ~ Immortal Lotus BGM: 不死之花 ~ Immortal Lotus BGM: 绽放在世界终焉
Abyss_Soul_Lotus - Marisa_and_Okina's_Extra
BGM: 被遗忘的无名者 BGM: The Forgotten Nameless One BGM: 不灭之魂 ~ Everlasting Volition
Chaos_of_Black_Loong - Reimu_and_Marisa's_Extra
BGM: 幻影回廊 ~ Illusive Corridor BGM: Winding Corridor of Illusions ~ Illusive Corridor BGM: 英豪蜃气楼 BGM: Heroic Mirage
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: 模·湖 BGM: The Hazy Lake BGM: 秘境的人鱼 BGM: Mermaid from the Uncharted Land BGM: 人里的雪和舞蹈的妖精 BGM: Snow at the Human Village and the Dancing Fairies BGM: 失色的镜像世界 BGM: Umbrella of Divine Light BGM: 微风与花田 BGM: The Light Breeze and the Flower Field BGM: 幽梦 loudmix BGM: Faint Dream (loudmix) BGM: Tempered Temple BGM: Tempered Temple BGM: 村纱船长 BGM: Captain Murasa BGM: Beyond the Miracle BGM: Beyond the Miracle BGM: 信仰是为了虚幻之人 loudmix BGM: Faith is for the Transient People (loudmix) BGM: 霄云 BGM: The Heavens BGM: 危险的好奇心 BGM: Dangerous Curiosity BGM: 作為龍真實的形貌 BGM: True Appearance of the Dragon
Chaos_of_Black_Loong - Sakuya_and_Meiling's_Extra
BGM: 幻影回廊 ~ Illusive Corridor BGM: Winding Corridor of Illusions ~ Illusive Corridor BGM: 英豪蜃气楼 BGM: Heroic Mirage
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: 雾之湖的芒种 BGM: Mangzhong of the Misty Lake BGM: Der scharlachrote Teufel BGM: Der scharlachrote Teufel BGM: 日暮之下,恶魔的舞会 BGM: Devil's Ball At Dusk BGM: Dasos-Poliouchos BGM: Dasos-Poliouchos BGM: 中世纪的晚霞 BGM: Red Glow of a Medieval Evening BGM: Histoiren de la magie BGM: Histoiren de la magie BGM: 黄金之国,今夜无眠 BGM: The Country of Gold Rests Not Tonight BGM: Golden Cinderella BGM: Golden Cinderella BGM: 满月星河图 BGM: Full Moon Constellation Chart BGM: 今夜的芒上月 ~ Underworld Loup-garo! BGM: Tonight's Full Moon ~ Underworld Loup-garo! BGM: 永恒王权契约 BGM: Eternal Kingship Contract BGM: 耸立山巅的长明灯 ~ the End of History BGM: Eternal Flame Towering Atop the Mountain Peak ~ the End of History BGM: 耸立山巅的长明灯 ~ the End of History BGM: Eternal Flame Towering Atop the Mountain Peak ~ the End of History
Youkai_Kori_Kassen - Ran's_Scenario
BGM: スカンディナヴィアグラキエール BGM: 破天荒な姫様 〜 Rude Rabbit BGM: 白銀の桃源郷 〜 Sweet Snow BGM: 情熱的な感じで東方風オリジナル曲 BGM: フォグレシアス迷夢賢者 BGM: ツインフロウス BGM: 真夜中の幻想道路 〜 Lit up way BGM: 機界伝承 〜 Sealed Prison BGM: 霊魂の宴と生命の祭 BGM: 幻想のイドラ 〜 Novum Organum BGM: 光と闇のコントラスト BGM: パニックグレイヴ
Riverbed_Soul_Saver - Reimu_and_Yukari's_Extra
BGM: 深海星雲 ~ Nebura Stream BGM: Deep-Sea Nebula ~ Nebula Stream BGM: 星の源流、草薙の剣竜 BGM: Source of the Starry River, Dragon of the Grass-Mowing Sword
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Phantasm
BGM: 生命無キ涜神ノ亡都 BGM: Lost Capital of Lifeless Blasphemy BGM: インヤンシーサーペント BGM: Yin-Yang-Shi Serpent
Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: 背水の楽園 BGM: Backwater Paradise BGM: 六花繚乱 ~ Sakurachill Blossom BGM: Snowflakes Blooming in Profusion ~ Sakurachill Blossom BGM: クリフォトの立て橋 BGM: Bridge of Qliphoth BGM: プリティーアプリコット BGM: Pretty Apricot BGM: エーテル霧氷海 BGM: Etheric Frosty Sea BGM: 深淵のソウルイーター BGM: Soul Eater from the Abyss BGM: 銀の鍵の門を超えて BGM: Surpass the Gate of the Silver Key BGM: 歴史から消された姫君 BGM: The Princess who was Erased from History BGM: 深海に浮かぶ桃源宮 BGM: The Shangri-La Palace Floating in the Deep Sea BGM: ワールドヤマタイザー BGM: World Yamataizer BGM: 死霊の都ルルイエ BGM: R'lyeh, the Capital of the Dead BGM: 幻想国家黎明 ~ Prayer Player BGM: Fantasy Nation Daybreak ~ Prayer Player
Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario
BGM: ミスティフライト BGM: Misty Flight BGM: 小さな小さな賢将 BGM: A Tiny, Tiny, Clever Commander BGM: スカイルーイン BGM: Sky Ruin BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 輝く天空の向こう側へ BGM: Toward the Other Side of the Glittering Skies BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: メタルバレットヘル BGM: Metal Bullet Hell BGM: 砂漠に佇む伽藍堂 BGM: A Garan Temple Standing in the Desert BGM: モンジュドウキーパーズ BGM: Monjudou Keepers BGM: 地底の奥深く BGM: In the Innermost Depths of the Earth BGM: 善財童子の讃嘆 ~ Bubbling Imaginary Treasures BGM: Extolment of Shancai Tongzi ~ Bubbling Imaginary Treasures
Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Extra
BGM: 来自仙界的新风 BGM: Fresh Air From the Hermit World BGM: 风中花,雪中月 BGM: Flowers in the Wind, Moon in the Snow
Sapphire_Panlogism - Marisa's_Carrefour
BGM: 世界の中心でアイを叫んだ神様 BGM: A God That Shouted 'Love' At the Heart of the World BGM: 彼女の千歳飴 BGM: Her Millennium Candy
Sapphire_Panlogism - Hecatia's_Carrefour
BGM: 世界の中心でアイを叫んだ神様 BGM: A God That Shouted 'Love' At the Heart of the World BGM: 彼女の千歳飴 BGM: Her Millennium Candy
Mystical_Power_Plant - Reimu_and_Utsuho's_Extra
BGM: ディーヴァズディバイス BGM: Diva's Device BGM: 命を導く歌 〜 Prospect Mirai BGM: Life-Guiding Song ~ Prospect Mirai
Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: 幅優先世界樹探検 BGM: Breadth-First Yggdrasil Expedition BGM: 描線上の画竜点睛 ~ Irisu Magicka BGM: Dragon's Ascent Above the Graphed Line ~ Irisu Magicka BGM: 日常生活が無意味となった人里 BGM: The Village Where Day to Day Has Become Meaningless BGM: 糖源郷の事実上の女王 ~ Sweets & Buster! BGM: De Facto Queen of Sugari-la ~ Sweets & Buster! BGM: 雪景球で捉えられし御伽噺 BGM: A Fairytale Caught in a Snowglobe BGM: 神懸かってる黄金の脚光、此処に登場 BGM: The Deity's Golden Spotlight Enters Here BGM: 神懸かってる玄想の火焔、此処に召喚 BGM: The Deity's Illusionary Black Flame is Summoned Here
Glory_of_Deep_Skies - Reimu's_Scenario
BGM: 蒼穹下ツアーへようこそ BGM: Welcome to the Subsky Tour BGM: 恥ずかしがり屋な五位鷺のプロミネンス BGM: Prominence of a Shy Heron BGM: 蒼き天涯を眠り通る BGM: Madman's Tavern of the Dream World BGM: スターダストシャンブラー BGM: Stardust Shambler BGM: 夢想の大城カダス BGM: Kadath, the Giant Castle of Dreams BGM: 見捨てられし神々を夢に求めて BGM: Dreamquest of the Forsaken Gods BGM: 夢想の大城カダス BGM: Kadath, the Giant Castle of Dreams BGM: 見捨てられし神々を夢に求めて BGM: Dreamquest of the Forsaken Gods BGM: 夢想の大城カダス BGM: Kadath, the Giant Castle of Dreams BGM: 見捨てられし神々を夢に求めて BGM: Dreamquest of the Forsaken Gods BGM: アザトースの中庭へ BGM: Into the Courts of Azathoth BGM: 原始の混沌の狂神 ~ Ethereal Paradise BGM: Insane God of the Primordial Chaos ~ Ethereal Paradise BGM: 旧支配者の永命約束 ~ AZOTH BGM: The Old Ones' Promise of Eternal Life ~ AZOTH
Ultimate_Vitality_of_Imagination - Aya's_Endings
BGM: 入眠 BGM: Falling Asleep BGM: 入眠 BGM: Falling Asleep BGM: 入眠 BGM: Falling Asleep BGM: 入眠 BGM: Falling Asleep BGM: 入眠 BGM: Falling Asleep
Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: Icy Blossom, Icy Dream BGM: Icy Blossom, Icy Dream BGM: 冰与雪的灵动 BGM: Cleverness of Ice and Snow BGM: 悔恨凝结之路 BGM: The Road Where Remorse Condenses BGM: 暗之花,吹来夜之香 BGM: The Flower of Shadow Brings the Fragrance of Night BGM: 开不尽的雪莲华 BGM: Endlessly Blooming Snow Lotus Flowers BGM: 雪兔的踪迹 ~ Nowhere but Everywhere BGM: Tracks of the Snow Hare ~ Nowhere but Everywhere BGM: 少女所见的深渊风景 BGM: The Scene of the Abyss the Girl Saw BGM: 空漠的黑与白 ~ Double Sickle of Death BGM: 沉没八万由甸的叹息 BGM: Lamentations Submerging 80000 Yojana BGM: 以太虚无论 BGM: 溺于罪海之魂 BGM: Spiritual Soul Drowning in the Sea of Sin BGM: 不死之花 ~ Immortal Lotus BGM: 不死之花 ~ Immortal Lotus BGM: 绽放在世界终焉
Frantically_Forbidden_Fruit - Youmu's_Legacy_Extra
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: 星条旗のピエロは彼女なのか? BGM: The Pierrot of the Star Spangled Banner was Her? BGM: 四季の華は太陽に踊る BGM: The Four Seasons' Flowers Dance in the Sun BGM: 稲田姫様に叱られるから BGM: Because Princess Inada is Scolding Me
Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: 無何有の郷 ~ Deep Mountain BGM: Paradise ~ Deep Mountain BGM: 大迷惑少女 ~ Explosion Girl BGM: A Very Annoying Girl ~ Explosion Girl BGM: 妖怪裏参道 ~ Secret Technology BGM: Rear Temple Path of Youkai ~ Secret Technology BGM: 幻想郷の二ッ岩 BGM: Futatsuiwa from Gensokyo BGM: ブクレシュティの人形師 BGM: The Doll Maker of Bucuresti BGM: プラスチックマインド BGM: Plastic Mind BGM: デザイアドライブ BGM: Desire Drive BGM: ゴーストリード BGM: Ghost Lead BGM: 妖々跋扈 ~ Who done it! BGM: Spiritual Domination ~ Who done it! BGM: Night Falls ~ Evening Star BGM: Night Falls ~ Evening Star BGM: Stardust Desire BGM: Stardust Desire BGM: 亡失のエモーション ~ Tree of Life BGM: The Lost Emotion ~ Tree of Life BGM: Border of Life BGM: Border of Life
Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: ミスティフライト BGM: Misty Flight BGM: 小さな小さな賢将 BGM: A Tiny, Tiny, Clever Commander BGM: スカイルーイン BGM: Sky Ruin BGM: 虎柄の毘沙門天 BGM: The Tiger-Patterned Bishamonten BGM: 輝く天空の向こう側へ BGM: Toward the Other Side of the Glittering Skies BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers BGM: メタルバレットヘル BGM: Metal Bullet Hell BGM: 少女さとり ~ 3rd eye BGM: Satori Maiden ~ 3rd Eye BGM: 砂漠に佇む伽藍堂 BGM: A Garan Temple Standing in the Desert BGM: モンジュドウキーパーズ BGM: Monjudou Keepers BGM: 地底の奥深く BGM: In the Innermost Depths of the Earth BGM: 善財童子の讃嘆 ~ Bubbling Imaginary Treasures BGM: Extolment of Shancai Tongzi ~ Bubbling Imaginary Treasures
Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 看不透的雾霭 BGM: Unascertainable Mist BGM: 流光溢彩之降临 BGM: The Coming of Brilliant Lights and Vibrant Colors BGM: Erratic Swing BGM: Erratic Swing BGM: 迷迷糊糊的时空表演 BGM: Bewildering Space-Time Show BGM: 浮向远空的云与心 BGM: Clouds and Hearts Floating Toward the Sky BGM: 飞驰于天空的废铁浪漫 BGM: The Romance of Scrap Iron Flying in the Sky BGM: 神思,融于星夜 BGM: A State of Mind, Melding Into the Starry Night BGM: 远方的指引者 BGM: A Guide from Afar BGM: 在变幻莫测的境界中漂流的意识坠向中心 BGM: A Consciousness Drifting in an Ever-Fluctuating Boundary Falls Towards the Center BGM: 万物凝心的太阳使者 BGM: Solar Envoy Who Attracts the Hearts of All BGM: 穿越纷繁的虚与实 BGM: Falsity and Truth That Pierce Through Complexity BGM: 空想信仰的神造耀光 ~ Effulgent World of Consciousness BGM: Divinely-Created Radiance of Imaginary Faith ~ Effulgent World of Consciousness BGM: 神欲的无限未来 BGM: The Unlimited Future of Divine Desire BGM: 神欲的无限未来 BGM: The Unlimited Future of Divine Desire BGM: 空想信仰的神造耀光 ~ Effulgent World of Consciousness BGM: Divinely-Created Radiance of Imaginary Faith ~ Effulgent World of Consciousness BGM: 神欲的无限未来 BGM: The Unlimited Future of Divine Desire
Shining_Shooting_Star - Koishi's_Extra
BGM: 来自仙界的新风 BGM: Fresh Air From the Hermit World BGM: 风中花,雪中月 BGM: Flowers in the Wind, Moon in the Snow
Sapphire_Panlogism - Marisa's_Extra
BGM: おぼれる者の心象風景 ~ Sinking Star BGM: A Drowning Man's Dreamscape ~ Sinking Star BGM: アーケインアウグル BGM: Arcane Augur
Shining_Shooting_Star - Sanae's_Scenario
BGM: 宁静夏夜的微风 BGM: A Peaceful Summer Night's Breeze BGM: 喧闹吧!在这不眠之夜 BGM: Let's Make Some Noise on this Sleepless Night! BGM: 灯火竹林 BGM: Lamplights in the Bamboo Forest BGM: 疾风闪电 BGM: Gale Lightning BGM: 木灵们的夏夜祭 BGM: The Kodama's Summer Night Festival BGM: 青柳传说 BGM: Legend of Aoyagi BGM: 万花世界的光与影 BGM: Light and Shadows in the Kaleidoscope World BGM: 镜中的幻象 BGM: Illusions in the Mirror BGM: 记忆中遥远的星星 BGM: Eternal Stars in Memories BGM: 引燃夜空的星火 BGM: Meteors Illuminating the Night Sky BGM: 银河的彼方 BGM: The Other Side of the Galaxy BGM: 琉璃星之愿 ~ Dream Star's Wish BGM: The Lapis Lazuli Star's Wish ~ Dream Star's Wish BGM: 闪耀在世界尽头 BGM: A Flash of Light at the World's End
Sapphire_Panlogism - Marisa's_Scenario
BGM: 空は近きに彷徨う BGM: The Sky Wanders Closer BGM: 白波から上がるフェー達 BGM: Fae Rising from Seafoam BGM: 蒼き天涯を眠り通る BGM: Seeping Through the Blue Canopy BGM: ピンクサイレンスの誓い BGM: Vow of Pink Silence BGM: 巫女の尻尾を追うマーメイド BGM: A Mermaid Chasing a Shrine Maiden's Tail BGM: 雲に座っているキルケ― BGM: Circe Sitting in the Clouds BGM: 中ノ鳥島ノ怠惰ナ砂 BGM: Lazy Sands of Nakanotorishima BGM: 綿津見の和太鼓デリュージ BGM: Watatsumi's Wadaiko Deluge BGM: 恐怖の鎖への抗戦は空振り BGM: Futile is the Fight Against the Fetters of Fear BGM: プリマドンナの焼け翼 ~ Walpurgis Nightmare BGM: The Primadonna's Burnt Wings ~ Walpurgis Nightmare BGM: カリスト・マトリックス BGM: Callisto Matrix BGM: 蒼玉母船 ~ Thalassic Izanami BGM: Sapphire Mothership ~ Thalassic Izanami BGM: アンテディルビアンマザーシップ BGM: Antediluvian Mothership
Sapphire_Panlogism - Shou's_Extra
BGM: おぼれる者の心象風景 ~ Sinking Star BGM: A Drowning Man's Dreamscape ~ Sinking Star BGM: アーケインアウグル BGM: Arcane Augur
Sapphire_Panlogism - Reimu's_Carrefour
BGM: 世界の中心でアイを叫んだ神様 BGM: A God That Shouted 'Love' At the Heart of the World BGM: 彼女の千歳飴 BGM: Her Millennium Candy
Scarlet_Weather_Rhapsody - Demo_Scenario
BGM: The Ground's Color is Yellow
Servants_of_Harvest_Wish - Sanae's_Extra
BGM: 曼珠と沙華の神隠し ~ by any other name BGM: Spiriting Away of Manju and Saka ~ by any other name BGM: 藻女のマインドゲーム BGM: Mikuzume's Mind Game
Inverse search:
bgm() | ~apply(lambda x,y: f"{x} - {y}", 0) | ungroup() | groupBy(1, True) | apply(joinSt() | unique() | apply(html.escape) | join("\n") | aS(fmt.pre), 1) | apply(fmt.h, 0, level=3) | viz.Carousel(searchMode=2)
BGM Stops
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM stops
Antinomy_of_Common_Flowers - Marisa's_Scenario
BGM. Adventure of the Tomboyish Girl in Love
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario
BGM. Deaf to all but the Song ~ Flower Mix
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. Eastern Ghostly Dream ~ Ancient Temple
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. Flowering Night
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. Gensokyo, Past and Present ~ Flower Land
Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. Higan Retour ~ Riverside View
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario
BGM. Lord Usa's Elemental Flag
Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario
BGM. Lord Usa's White Flag
Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. Lunatic Eyes ~ Invisible Full Moon
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. Oriental Dark Flight
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. Phantom Band ~ Phantom Ensemble
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. Poison Body ~ Forsaken Doll
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario
BGM. Spring Lane ~ Colorful Path
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. Wind God Girl
Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. おてんば恋娘の冒険
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario
BGM. お宇佐さまの素い幡
Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. もう歌しか聞こえない ~ Flower Mix
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. オリエンタルダークフライト
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. フラワリングナイト
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. ポイズンボディ ~ Forsaken Doll
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario
BGM. 今昔幻想郷 ~ Flower Land
Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. 六十年目の東方裁判 ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. 幽霊楽団 ~ Phantom Ensemble
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. 彼岸帰航 ~ Riverside View
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario
BGM. 春色小径 ~ Colorful Path
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. 東方妖々夢 ~ Ancient Temple
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Reisen's_Scenario Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. 狂気の瞳 ~ Invisible Full Moon
Phantasmagoria_of_Flower_View - Tewi's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Komachi's_Scenario Phantasmagoria_of_Flower_View - Aya's_Scenario Phantasmagoria_of_Flower_View - Medicine's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Mystia's_Scenario Phantasmagoria_of_Flower_View - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM. 風神少女
Phantasmagoria_of_Flower_View - Yuuka's_Scenario Phantasmagoria_of_Flower_View - Lyrica's_Scenario Phantasmagoria_of_Flower_View - Youmu's_Scenario Phantasmagoria_of_Flower_View - Eiki's_Scenario Phantasmagoria_of_Flower_View - Cirno's_Scenario
BGM:
Urban_Legend_in_Limbo - Reimu's_Scenario Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
BGM: Eternal Phantasmagoria
Concealed_the_Conclusion - Phantasm
BGM: ガンダーラのユートピア
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Extra Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Extra Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Extra Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Extra Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Extra Bubbling_Imaginary_Treasures - Komachi_and_Kasen's_Extra Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Extra Bubbling_Imaginary_Treasures - Reimu_and_Suika's_Extra Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Extra Bubbling_Imaginary_Treasures - Sanae_and_Suwako's_Extra Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Extra Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Extra
BGM: モンジュドウキーパーズ
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: 人類救済計画 ~ The Greatest Salvation
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: 善財童子の讃嘆 ~ Bubbling Imaginary Treasures
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: 小さな小さな賢い将
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario
BGM: 少女さとり ~ 3rd eye
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: 春の湊に
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario
BGM: 100回目のブラックマーケット
100th_Black_Market - Dialogue
BGM: 1110年目の飛梅伝説
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: 40 Days Condensed into One
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
BGM: 53ミニッツの青い海
Concealed_the_Conclusion - Part_Two
BGM: A Brave and Leisurely Beast
Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
BGM: A Consciousness Drifting in an Ever-Fluctuating Boundary Falls Towards the Center
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: A Drowning Man's Dreamscape ~ Sinking Star
Sapphire_Panlogism - Hecatia's_Extra Sapphire_Panlogism - Reimu's_Extra Sapphire_Panlogism - Marisa's_Extra Sapphire_Panlogism - Shou's_Extra
BGM: A Fairytale Caught in a Snowglobe
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: A Flash of Light at the World's End
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: A Flower-Studded Sake Dish on Mt. Ooe
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: A Garan Temple Standing in the Desert
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: A God That Misses People ~ Romantic Fall
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: A God That Shouted 'Love' At the Heart of the World
Sapphire_Panlogism - Marisa's_Carrefour Sapphire_Panlogism - Hecatia's_Carrefour Sapphire_Panlogism - Reimu's_Carrefour
BGM: A Guide from Afar
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: A Maiden's Illusionary Funeral ~ Necro-Fantasy
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra
BGM: A Mausoleum as Vast as a Garan Temple ~ Hollow Mansion
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: A Mermaid Chasing a Shrine Maiden's Tail
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: A Midnight Fairy Dance
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
BGM: A Midsummer Fairy's Dream
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: A Pair of Divine Beasts
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: A Party's Climax 200 Nautical Miles Over the Sea ~ Prayed Feast
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: A Peaceful Summer Night's Breeze
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: A Phoenix Cried on the High Hill
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: A Profane Shrine Maiden in a Sacred Shrine (Ruby Version)
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: A Profane Shrine Maiden in a Sacred Shrine (Sapphire Version)
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: A Shower of Strange Occurrences
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: A Soul as Scarlet as a Ground Cherry
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: A Star of Hope Rises in the Blue Sky
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: A State of Mind, Melding Into the Starry Night
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: A Tiny, Tiny Clever Commander
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario
BGM: A Tiny, Tiny, Clever Commander
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: A Very Annoying Girl ~ Explosion Girl
Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: A World of Nightmares Never Seen Before
Legacy_of_Lunatic_Kingdom - Reimu's_Extra Legacy_of_Lunatic_Kingdom - Reisen's_Extra Legacy_of_Lunatic_Kingdom - Sanae's_Extra Legacy_of_Lunatic_Kingdom - Marisa's_Extra
BGM: A red soul like a firefly
Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario
BGM: AN APPLE DISASTER!!
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
BGM: Absorbed in Curiosity Year-Round
Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B
BGM: Acheron Higan Voyage
Book_of_Star_Mythology - Reimu's_Extra Book_of_Star_Mythology - Marisa's_Extra Book_of_Star_Mythology - Sanae's_Extra
BGM: Adventure of the Tomboyish Girl in Love
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: Ah, Distant Sanctuary Travelogue
Over_the_Developed_Eden - Sumireko's_Extra Over_the_Developed_Eden - Shinmyoumaru's_Extra Over_the_Developed_Eden - Reimu's_Extra Over_the_Developed_Eden - Marisa's_Extra
BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend [3]
Mountain_of_Faith - Marisa's_Scenario
BGM: Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend[2]
Mountain_of_Faith - Reimu's_Scenario
BGM: Alice Maestera
Lotus_Land_Story - Marisa's_Scenario
BGM: Alice Maestra
Lotus_Land_Story - Reimu's_Scenario Concealed_the_Conclusion - Scenario_D
BGM: Alice in Wonderland
Mystic_Square - Yuuka's_Extra Mystic_Square - Reimu's_Extra Mystic_Square - Mima's_Extra Mystic_Square - Marisa's_Extra
BGM: All Season Mischief
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: All of the World's Creatures
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
BGM: Alleyway of Roaring Waves
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: Along the Path of Darkness
The_Shattered_Sky - Reimu's_Phantasm The_Shattered_Sky - Marisa's_Phantasm The_Shattered_Sky - Sanae's_Phantasm
BGM: An Adventure on the Map
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: An Ever-Shifting Ancient Faith
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: An Everyday Life with Balls
Urban_Legend_in_Limbo - Demo_Scenario Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario
BGM: An Odd Couple
Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: Ancient Star Gazer
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: Another Catastrophe in Bhavaagra
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
BGM: Antediluvian Mothership
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: Antique Terror
Shuusou_Gyoku - Main_Scenario Concealed_the_Conclusion - Scenario_C
BGM: Apparitions Stalk the Night
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: Arcane Augur
Sapphire_Panlogism - Hecatia's_Extra Sapphire_Panlogism - Reimu's_Extra Sapphire_Panlogism - Marisa's_Extra Sapphire_Panlogism - Shou's_Extra
BGM: Arcing Fault ~ Reaching the Flash Boundary
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Argue For and Against
Scarlet_Weather_Rhapsody - Reimu's_Scenario
BGM: Argue for and Against
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
BGM: Arrival of the Winds of the Era
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: At the Harbor of Spring
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Sanae_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: Autumn Snow Falling in a Mountain Forest Overnight
Ultimate_Vitality_of_Imagination - Aya's_Extra Ultimate_Vitality_of_Imagination - Reimu's_Extra
BGM: BAD Apple!!
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: Backwater Paradise
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: Bad Omen
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario
BGM: Bamboo Forest in Flames
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: Bamboo Forest of the Full Moon
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: Banditry Technology
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: Battlefield of the Flower Threshold
Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Reimu's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: Beast Kings' Rest
Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario
BGM: Beast Metropolis
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: Beautiful Nature Sight
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: Because Princess Inada is Scolding Me
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Extra Frantically_Forbidden_Fruit - Reimu's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Paradise_Extra Frantically_Forbidden_Fruit - Sakuya's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Legacy_Extra Frantically_Forbidden_Fruit - Sanae's_Legacy_Extra Frantically_Forbidden_Fruit - Yuuka's_Paradise_Extra Frantically_Forbidden_Fruit - Yuuka's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Legacy_Extra
BGM: Being Things Eye to Eye
Antinomy_of_Common_Flowers - Marisa's_Scenario
BGM: Believe in Possibilities
Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Reisen's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario
BGM: Bell Tower Battlefield ~ Bell tower
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: Bell of Antipodes
Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: Bell of a Billion Kalpas
Urban_Legend_in_Limbo - Reisen's_Scenario
BGM: Bet on Death
Story_of_Eastern_Wonderland - Regular_Stages
BGM: Beware the Forest's Flowers
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: Beware the Umbrella Left There Forever
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: Bewildering Space-Time Show
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: Beyond the Miracle
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: Bhavaagra As Seen Through a Child's Mind
Scarlet_Weather_Rhapsody - Suika's_Scenario Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: Bhavaagra as Seen Through a Child's Mind
Scarlet_Weather_Rhapsody - Reimu's_Scenario
BGM: Binary Spheres
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: Bite the Bullet from the Midsummer Heat!
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: Black Gates
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
BGM: Black Markets Can Happen Anywhere, Anytime
100th_Black_Market - Dialogue
BGM: Blessed Pathfinder
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
BGM: Bloom Nobly, Ink-Black Cherry Blossom ~ Border of Life
Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario
BGM: Bloom Nobly, Ink-black Cherry Blossom ~ Border of Life[14]
Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: Bloom Nobly, Ink-black Cherry Blossom ~ Border of Life[7]
Perfect_Cherry_Blossom - Sakuya's_Scenario
BGM: Bloom Nobly, Ink-black Cherry Blossom ~ Border of Life[8]
Perfect_Cherry_Blossom - Marisa's_Scenario
BGM: Blue Sea of 53 Minutes
Concealed_the_Conclusion - Part_Two
BGM: Border of Life
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: Boundary Folklore
Urban_Legend_in_Limbo - Reisen's_Scenario
BGM: Boundary Folklore (latter half)
Urban_Legend_in_Limbo - Reisen's_Scenario
BGM: Box of Kaleidoscopes
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: Breadth-First Yggdrasil Expedition
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: Break the Sabbath
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: Bridge of Qliphoth
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: Brilliant Saint Michael
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: Broken Moon
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: Broken Strawberry Shortcake
Samidare - Extra_Scenario
BGM: Callisto Matrix
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: Captain Murasa
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Kanako's_Scenario Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: Catastrophe in Bhava-agra ~ Wonderful Heaven
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: Catastrophe in Bhavaagra ~ Wonderful Heaven
Scarlet_Weather_Rhapsody - Suika's_Scenario Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: Cemetery of Onbashira
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: Cemetery of Onbashira ~ Grave of Being
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: Charismatic Dance of the Devil ~ The little devil dance
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: Cherry Blossoms Dancing on Asama Shrine
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: Chicane
Samidare - Extra_Scenario
BGM: Cinderella Cage ~ Kagome-Kagome
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Cinderella Cage ~ Kagome-Kagome
Concealed_the_Conclusion - Scenario_B
BGM: Circe Sitting in the Clouds
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: Cleverness of Ice and Snow
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: Clouds and Hearts Floating Toward the Sky
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: Colourless Mirror World
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: Combat Airspace
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: Complete Darkness
Story_of_Eastern_Wonderland - Regular_Stages
BGM: Constant and Unchanging Temple of Worship
Antinomy_of_Common_Flowers - Nitori's_Scenario
BGM: ConvAria
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: ConvAriaコンバアリア
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: Corpse Voyage ~ Be of good cheer!
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: Corpse Voyage ~ Be of good cheer!
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Ran's_Scenario
BGM: Corridor Stretching to Eternity
Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM: Corridor of Time ~ Flowing time
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: Could a Mermaid Dream of Being a Human?
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: Cradle of Misfortunate Stars
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: Crazy Backup Dancers
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: Crimson Maiden ~ Crimson Dead!!
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: Crimson in the Black Sea ~ Legendary Fish
Scarlet_Weather_Rhapsody - Suika's_Scenario Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: Crossing the River of Heaven
Glory_of_Deep_Skies - Reimu's_Extra
BGM: Cry of the Nephilim
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: Crystallized Silver
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: Culvert Cruise
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: Cumulonimbus Clouds in the Blue Sky
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: Cumulonimbus Grimace
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: Cursed Garden Laboratory
Little_Doll_Queen - Medicine's_Scenario Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: Cute Devil ~ Innocence
Lotus_Land_Story - Marisa's_Extra Lotus_Land_Story - Reimu's_Extra
BGM: Cyclone of the Space Sky
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Dance in the Darkness, Falling Stone Cherry Blossoms
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: Dancing Water Spray
Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: Dangerous Curiosity
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: Dark Side of Fate
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: Dasos-Poliouchos
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: De Facto Queen of Sugari-la ~ Sweets & Buster!
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: Deaf to All but the Song
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Deaf to all but the Song ~ Flower Mix
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: Death Twins
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
BGM: Decoration Battle
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: Deep Historia
Over_the_Developed_Eden - Sumireko's_Extra Over_the_Developed_Eden - Shinmyoumaru's_Extra Over_the_Developed_Eden - Reimu's_Extra Over_the_Developed_Eden - Marisa's_Extra
BGM: Deep-Mountain Encounter
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: Deep-Sea Nebula ~ Nebula Stream
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Extra Riverbed_Soul_Saver - Futo_and_Miko's_Extra Riverbed_Soul_Saver - Reimu_and_Yukari's_Extra
BGM: Demistify Feast
Concealed_the_Conclusion - Scenario_B
BGM: Demonic Place
Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario
BGM: Demystify Feast
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario
BGM: Depths of the Earth, Ocean of Avarice
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: Der scharlachrote Teufel
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: Desire Drive
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: Devil's Ball At Dusk
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: Diao Ye Zong
Concealed_the_Conclusion - Part_Two
BGM: Diao Ye Zong (withered leaf)
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: Dichromatic Lotus Butterfly ~ Ancients
Touhou_Hisoutensoku - Sanae's_Scenario Shuusou_Gyoku - Extra_Scenario
BGM: Dimension of Reverie
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: Disastrous Gemini
Shuusou_Gyoku - Main_Scenario
BGM: Distant Dream of Ghostly Bamboo
Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario
BGM: Distant Dream of Silent Bamboo
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: Diva's Device
Mystical_Power_Plant - Reimu_and_Utsuho's_Extra
BGM: Divinely-Created Radiance of Imaginary Faith ~ Effulgent World of Consciousness
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: Do Squirrels Dream of Electric Rodents?
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: Does the Forbidden Door Lead to This World, or the World Beyond?
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: Doll Judgement
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario
BGM: Doll Judgement ~ The Girl who Played with People's Shapes
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: Doll Maker of Bucuresti
Immaterial_and_Missing_Power - Suika's_Scenario
BGM: Doll of Misery
Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: Doll's Story ~ Doll of Misery
Mystic_Square - Reimu's_Scenario
BGM: Doll’s Never-Abandoned Dream
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: Don't call me.
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: Dot Matrix Battlers
Fan-made_Virtual_Autography - Sumireko's_Extra Fan-made_Virtual_Autography - Reimu's_Extra Fan-made_Virtual_Autography - Marisa's_Extra
BGM: Down the Familiar Path of Dusk
The_Shattered_Sky - Sanae's_Extra The_Shattered_Sky - Marisa's_Extra The_Shattered_Sky - Reimu's_Extra
BGM: Dragon God Flying to Mount Hourai ~ Oriental Mythology
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: Dragon's Ascent Above the Graphed Line ~ Irisu Magicka
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: Dream Express
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: Dream Express ~ Red / White
Concealed_the_Conclusion - Phantasm
BGM: Dream Express~Red/White
Concealed_the_Conclusion - Phantasm
BGM: Dream Land
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: Dream Machine ~ Innocent Power
Shuusou_Gyoku - Main_Scenario
BGM: Dream World Folklore
Antinomy_of_Common_Flowers - Nitori's_Scenario
BGM: Dream of Huaxu
The_Alternative_Age - Reimu's_Extra The_Alternative_Age - Marisa's_Extra
BGM: Dreamquest of the Forsaken Gods
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: Drought on the Warpath to Heaven ~ Weather Drive
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: Drunk as I Like
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
BGM: Dullahan Under the Willows
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: East of Eden
Samidare - Extra_Scenario
BGM: Eastern Anthem ~ Only Edo, Gong J-ode!
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: Eastern Ghostly Dream ~ Ancient Temple
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: Eastern House of Dreams ~ East castle
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: Eastern Judgement in the Sixtieth Year ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: Eastern Mystic Love Consultation
Immaterial_and_Missing_Power - Sakuya's_Scenario
BGM: Eastern Mystical Tale of Romance
Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: Eastern Wind
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: Echo of a Sea Petrel ~ Natural Forecast
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: Electric Heritage
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: Elegance of Fuji-san ~My Heart is No Stone~
Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Extra Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Extra Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Extra
BGM: Emotion of loss ~ Tree of Life
Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario
BGM: Emotional Skyscraper ~ Cosmic Mind
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario
BGM: End of Daylight
Story_of_Eastern_Wonderland - Regular_Stages
BGM: Endless Fate ~ Endless fate
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: Endless Night View
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: Endlessly Blooming Snow Lotus Flowers
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: Enigmatique Doll (sic)~ Phantom Shape
The_Alternative_Age - Marisa's_Scenario
BGM: Enigmatique Doll [sic] ~ Phantom Shape
The_Alternative_Age - Reimu's_Scenario
BGM: EnigmatiqueDoll ~ 怪人形
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: Entrusting this World to Idols ~ Idolatrize World
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: Equitable Scramble for Victory
Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario
BGM: Erratic Swing
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: Eternal Flame Towering Atop the Mountain Peak ~ the End of History
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: Eternal Full Moon
Concealed_the_Conclusion - Scenario_C
BGM: Eternal Kingship Contract
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: Eternal Phantasmagoria
Concealed_the_Conclusion - Phantasm
BGM: Eternal Spring Dream
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: Eternal Stars in Memories
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: Etheric Frosty Sea
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: Evening Parade of Humans and Beasts
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: Everlasting Red Spider Lily
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Sunken_Fossil_World - Kanako's_Scenario Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter) Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: Everyday life with a ball
Urban_Legend_in_Limbo - Demo_Scenario
BGM: Exorcism Din
Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: Extend Ash ~ Hourai Victim
Concealed_the_Conclusion - Scenario_B
BGM: Extend Ash ~ Person of Hourai
Imperishable_Night - Barrier_Team's_Extra Imperishable_Night - Netherworld_Team's_Extra Imperishable_Night - Scarlet_Team's_Extra Imperishable_Night - Magic_Team's_Extra Imperishable_Night - Boundary_Team's_Extra Imperishable_Night - Ghost_Team's_Extra
BGM: Extolment of Shancai Tongzi ~ Bubbling Imaginary Treasures
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: Extra Love
Story_of_Eastern_Wonderland - Extra_Stage
BGM: Fae Rising from Seafoam
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: Faint Dream (loudmix)
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: Faint Dream ~ Inanimate Dream
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario Concealed_the_Conclusion - Scenario_D Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: Fair Scramble
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario
BGM: Fairy Swarm ~ Endless Parade
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Fairy of Samsara ~ Reincarnation
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: Fairy's Last Stand ~ A dare
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: Faith Is for the Transient People
Touhou_Hisoutensoku - Cirno's_Scenario
BGM: Faith is for the Transient People
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: Faith is for the Transient People (loudmix)
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: Fall of Fall ~ Autumnal Waterfall
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: Falling Asleep
Ultimate_Vitality_of_Imagination - Aya's_Endings
BGM: False Strawberry
Shuusou_Gyoku - Main_Scenario
BGM: Falsity and Truth That Pierce Through Complexity
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: Fantastic Friend
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
BGM: Fantastic Imperial Capital
Shuusou_Gyoku - Main_Scenario
BGM: Fantastic Kaleidoscape ~ Anthologia
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: Fantastic Light, Ancient Flowers ~ Infinity Lightning
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: Fantastic Tale of Convallection~ Sparkling Quixotic Forest
Little_Doll_Queen - Medicine's_Scenario Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: Fantasy Corridor of White Silver
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: Fantasy Nation Daybreak ~ Prayer Player
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: Fantasy Science ~ Doll's Phantom
Shuusou_Gyoku - Main_Scenario
BGM: Faraway Voyage of 380 000 Kilometers
Legacy_of_Lunatic_Kingdom - Marisa's_Scenario
BGM: Faraway Voyage of 380,000 Kilometers
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: Feast of Wicked Stars ~ Celestial Burst
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: Fire Spirit of the Forest ~ First Ignition
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Fires of Hokkai
Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: Firmament Army
Shuusou_Gyoku - Main_Scenario
BGM: Flamethrower
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: Flawless Clothing of the Celestials
Scarlet_Weather_Rhapsody - Suika's_Scenario Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: Flawless as Clothing of the Celestials ~ Yellow Lily
Antinomy_of_Common_Flowers - Nitori's_Scenario
BGM: Flight of The Bamboo Cutter ~ Lunatic Princess
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Boundary_Team's_Scenario_1
BGM: Flight of the Bamboo Cutter ~ Lunatic Princess
Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Flight over the Forest ~ Condensed Wilderness
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Flower of Past Days ~ Fairy of Flower
The_Alternative_Age - Reimu's_Extra The_Alternative_Age - Marisa's_Extra
BGM: Flowering Night
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: Flowers in the Wind, Moon in the Snow
Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Extra Shining_Shooting_Star - Koishi's_Extra
BGM: Flowing Moon Night Pastorale
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: Fly Above Hatoyama at Night - Power MIX
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: Flying Colours ~ Indomitable Kagura
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: Flying Izuna of the Unblowing Temple
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: Footprints of Trieste
Marine_Benefit - Sanae's_Extra Marine_Benefit - Marisa's_Extra
BGM: Forbidden Magic
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: Forms of Manifested Folklore
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Demo_Scenario Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Reisen's_Scenario Urban_Legend_in_Limbo - Reimu's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: Fountain of Youth
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: Fragrant Plants
Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario
BGM: Free and Easy
Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario
BGM: Fresh Air From the Hermit World
Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Extra Shining_Shooting_Star - Koishi's_Extra
BGM: From Beginning to End ~ Drunken Prophet
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
BGM: From Earth to Heaven
The_Shattered_Sky - Sanae's_Heaven The_Shattered_Sky - Reimu's_Heaven The_Shattered_Sky - Marisa's_Heaven
BGM: Frozen Capital of Eternity
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: Full Moon Constellation Chart
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: Futatsuiwa From Sado
Ten_Desires - Marisa's_Extra Ten_Desires - Youmu's_Extra Ten_Desires - Sanae's_Extra Ten_Desires - Reimu's_Extra
BGM: Futatsuiwa from Gensokyo
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: Futatsuiwa from Sado
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: Futile is the Fight Against the Fetters of Fear
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: G Free ~ Final Dream
Concealed_the_Conclusion - Part_Two
BGM: G Free ~ Ultimate Dream
Concealed_the_Conclusion - Part_Two
BGM: Gale Lightning
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: Gandhara's Utopia
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Extra Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Extra Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Extra Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Extra Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Extra Bubbling_Imaginary_Treasures - Komachi_and_Kasen's_Extra Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Extra Bubbling_Imaginary_Treasures - Reimu_and_Suika's_Extra Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Extra Bubbling_Imaginary_Treasures - Sanae_and_Suwako's_Extra Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Extra Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Extra
BGM: Gather and Sing in the Scarlet Dawn
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: Gathering the Memorious from All Around Japan
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: Gensokyo Millennium ~ History of the Moon
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Ghost Lead
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: Giant prospect of a Water Mass
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: Girl's Divinity ~ Pandora's Box
Shuusou_Gyoku - Main_Scenario
BGM: Girl's Secret Epigram
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: Girls' Sealing Bluff
White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: Girls' Secret Sealing Bluff
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2
BGM: Girls' Secret Sealing Club
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: Glaciated Gloam ~ 未鸣七弦
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
BGM: Glaciated Gloom ~ The Unresonant Seven Strings
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
BGM: Go behind the scene! ~ the Game in the Closed Region
Fan-made_Virtual_Autography - Sumireko's_Extra Fan-made_Virtual_Autography - Reimu's_Extra Fan-made_Virtual_Autography - Marisa's_Extra
BGM: Go behind the scene! ~ 閉領域のゲーム
Fan-made_Virtual_Autography - Sumireko's_Extra Fan-made_Virtual_Autography - Reimu's_Extra Fan-made_Virtual_Autography - Marisa's_Extra
BGM: Golden Cinderella
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: Grandeur of the Ocean ~ Fantastic Sea
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: Grandiloquence
Antinomy_of_Common_Flowers - Nitori's_Scenario
BGM: Great Fairy Wars ~ Fairy Wars
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
BGM: Great Tree of Keter
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: Greatly Troublesome Girl ~ Explosion Girl
Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario
BGM: Green-eyed Jealousy
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: Hakurei Killer Street
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: Hakurei ~ Eastern Wind
Story_of_Eastern_Wonderland - Regular_Stages Concealed_the_Conclusion - Scenario_D
BGM: Hartmann's Youkai Girl
Subterranean_Animism - Reimu_and_Suika's_Extra Subterranean_Animism - Reimu_and_Yukari's_Extra Subterranean_Animism - Marisa_and_Alice's_Extra Subterranean_Animism - Marisa_and_Patchouli's_Extra Subterranean_Animism - Reimu_and_Aya's_Extra Subterranean_Animism - Marisa_and_Nitori's_Extra Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: Heartfelt Fancy
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: Heian Alien
Undefined_Fantastic_Object - Sanae_A's_Extra Undefined_Fantastic_Object - Reimu_A's_Extra Undefined_Fantastic_Object - Sanae_B's_Extra Undefined_Fantastic_Object - Reimu_B's_Extra Undefined_Fantastic_Object - Marisa_B's_Extra Undefined_Fantastic_Object - Marisa_A's_Extra
BGM: Hellfire Mantle
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: Her Millennium Candy
Sapphire_Panlogism - Marisa's_Carrefour Sapphire_Panlogism - Hecatia's_Carrefour Sapphire_Panlogism - Reimu's_Carrefour
BGM: Heroic Mirage
Chaos_of_Black_Loong - Reimu_and_Marisa's_Extra Chaos_of_Black_Loong - Sakuya_and_Meiling's_Extra
BGM: Hidden Superhuman ~ Hidden Desire
Ultimate_Vitality_of_Imagination - Aya's_Extra Ultimate_Vitality_of_Imagination - Reimu's_Extra
BGM: Higan Clouds, Border Dreams
Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: Higan Retour ~ Riverside View
Scarlet_Weather_Rhapsody - Remilia's_Scenario Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: Hiroari Shoots a Strange Bird ~ Till When?
Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Concealed_the_Conclusion - Part_Two Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: Hiroari Shoots a Strange Bird ~ Till When?[12]
Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: Hiroari Shoots a Strange Bird ~ Till When?[4]
Perfect_Cherry_Blossom - Sakuya's_Scenario
BGM: Hiroari Shoots a Strange Bird ~ Till When?[6]
Perfect_Cherry_Blossom - Marisa's_Scenario
BGM: Hiroari Shoots a Strange Bird ~ Till When?
Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario
BGM: Histoiren de la magie
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: Hot Cake Laboratory
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
BGM: Humans and Youkai Traversing the Canal
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: I'm an Urban Kappa, For Sure!
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: Icy Blossom, Icy Dream
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: Illusion of Flowers, Sky of Scarlet Dreams
Shuusou_Gyoku - Main_Scenario
BGM: Illusion of a Maid ~ Icemilk Magic
Lotus_Land_Story - Marisa's_Extra Lotus_Land_Story - Reimu's_Extra
BGM: Illusionary Girl from Canaveral
Shuusou_Gyoku - Main_Scenario
BGM: Illusionary Joururi
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: Illusionary Night ~ Ghostly Eyes
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Illusionary Sputnik Night
Shuusou_Gyoku - Main_Scenario
BGM: Illusionary Via Dolorosa
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: Illusionary White Traveler
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: Illusions in the Mirror
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: Imaginary History
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario
BGM: Impermanence of Spring-Colour Ripples ~World of Blooming Sakura~
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario
BGM: Impermanence of Spring-Coloured Ripples ~World of Blooming Sakura~
Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: In High Spirits
Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM: In the Innermost Depths of the Earth
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: Inchling of the Shining Needle ~ Little Princess
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: Inconstant and Unchanging Sights
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: Inner Heart
Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario
BGM: Insane God of the Primordial Chaos ~ Ethereal Paradise
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: Interdimensional Voyage of a Ghostly Passenger Ship
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: Intermezzo
Immaterial_and_Missing_Power - Sakuya's_Scenario
BGM: Into Backdoor
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: Into the Courts of Azathoth
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: Is There Anyone Else Covered in Fresh Blood? ~ Who cares
Fantastic_Danmaku_Festival - Sanae's_Extra Fantastic_Danmaku_Festival - Reimu's_Extra Fantastic_Danmaku_Festival - Marisa's_Extra
BGM: Jade Rabbit and the Forbidden Fruit ~ Eden's Apple.
Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario
BGM: Jelly Stone
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: Jewel of the Flashing Scales
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Jewel of the Sky-Ruling Dragon God ~ Quintessential Fragments
Glory_of_Deep_Skies - Reimu's_Extra
BGM: Joutoujin of Ceramics
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle)
BGM: Joutounin of Ceramics
Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: Jungle of Fusang
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: Kadath, the Giant Castle of Dreams
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: Kaguya's Guidance
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: Kitten of Great Fortune
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: Koujoukaku, Glimmering with Nocturnal Light
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: Lakewater Beast Road
Over_the_Developed_Eden - Shinmyoumaru's_Phantom Over_the_Developed_Eden - Marisa's_Phantom Over_the_Developed_Eden - Reimu's_Phantom Over_the_Developed_Eden - Sumireko's_Phantom
BGM: Lamentations Submerging 80000 Yojana
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: Lamplights in the Bamboo Forest
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: Last Occultism ~ Esotericist of the Present World
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Reimu's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: Last Remote
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Extra Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Extra Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Extra Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Extra Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Extra Bubbling_Imaginary_Treasures - Komachi_and_Kasen's_Extra Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Extra Subterranean_Animism - Reimu_and_Suika's_Extra Subterranean_Animism - Reimu_and_Yukari's_Extra Subterranean_Animism - Marisa_and_Alice's_Extra Subterranean_Animism - Marisa_and_Patchouli's_Extra Subterranean_Animism - Reimu_and_Aya's_Extra Subterranean_Animism - Marisa_and_Nitori's_Extra Bubbling_Imaginary_Treasures - Reimu_and_Suika's_Extra Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Extra Bubbling_Imaginary_Treasures - Sanae_and_Suwako's_Extra Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Extra Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Extra
BGM: Lazy Sands of Nakanotorishima
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: Legend of Aokigahara
Concealed_the_Conclusion - Part_Two
BGM: Legend of Aoyagi
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: Legend of Kikyouzuka ~ Black Ventus
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: Legendary Illusion ~ Infinite Being
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: Let's Live in a Lovely Cemetery
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: Let's Make Some Noise on this Sleepless Night!
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: Life-Guiding Song ~ Prospect Mirai
Mystical_Power_Plant - Reimu_and_Utsuho's_Extra
BGM: Light and Shadows in the Kaleidoscope World
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: Lingering Light ~ Magician's Conviction
The_Shattered_Sky - Sanae's_Extra The_Shattered_Sky - Marisa's_Extra The_Shattered_Sky - Reimu's_Extra
BGM: Little Tune for a Drizzle in the Forest
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: Living Witness of the World of Mythology ~ The Lost Comer
The_Last_Comer - Marisa's_Extras The_Last_Comer - Reimu's_Extras
BGM: Locked Girl ~ Girl's Sealed Room
Immaterial_and_Missing_Power - Youmu's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario
BGM: Locked Girl ~ The Girl's Sealed Room
Immaterial_and_Missing_Power - Patchouli's_Scenario Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Concealed_the_Conclusion - Scenario_A
BGM: Lonesome Werewolf
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: Loose Rain
Great_Fairy_Wars - Extra Fairy_Wars - Extra
BGM: Lord Usa's Elemental Flag
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: Lost Capital of Lifeless Blasphemy
Riverbed_Soul_Saver - Futo_and_Miko's_Phantasm Riverbed_Soul_Saver - Reimu_and_Yukari's_Phantasm Riverbed_Soul_Saver - Marisa_and_Patchouli's_Phantasm
BGM: Lost River
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: Lotus Love
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: Love Distortion ~ Crimson Stalker.
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: Love Letters in the Mind Game
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: Love-Colored Magic
Touhou_Hisoutensoku - Cirno's_Scenario
BGM: Love-Colored Master Spark
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Love-Coloured Magic
Immaterial_and_Missing_Power - Alice's_Scenario
BGM: Love-coloured Magic
Immaterial_and_Missing_Power - Reimu's_Scenario Story_of_Eastern_Wonderland - Regular_Stages
BGM: Lullaby of Deserted Hell
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: Lunar Clock ~ Luna Dial
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario
BGM: Lunar Clock ~ Lunar Dial
Immaterial_and_Missing_Power - Youmu's_Scenario
BGM: Lunar Rainbow
100th_Black_Market - Dialogue
BGM: Lunate Elf
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario
BGM: Lunatic Eyes ~ Invisible Full Moon
Scarlet_Weather_Rhapsody - Remilia's_Scenario Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1 Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: Lunatic Rabbit ~ Red Alert
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Machinations Under the Moon ~ Angelic Night
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: Madman's Tavern of the Dream World
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: Magic Beast Scramble
Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Sanae's_Scenario Unfinished_Dream_of_All_Living_Ghost - Rin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
BGM: Magic Square
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: Magic of Life
The_Alternative_Age - Marisa's_Scenario
BGM: Magical Girl's Crusade
Shuusou_Gyoku - Main_Scenario
BGM: Magical Hopalong Cassidy Station
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
BGM: Magical Storm
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: Magician of the Evening Darkness
The_Alternative_Age - Marisa's_Scenario
BGM: Magician's Melancholy
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: Magus Night
Great_Fairy_Wars - Extra Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario Fairy_Wars - Extra
BGM: Maiden of Darkness ~ Dark girl
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: Maiden's Cappriccio ~ Dream Battle
Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Marisa's_Scenario
BGM: Maiden's Cappricio
Sunken_Fossil_World - Flandre's_Scenario
BGM: Maiden's Capriccio
Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Kanako's_Scenario Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Lotus_Land_Story - Marisa's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: Maiden's Capriccio ~ Dream Battle
Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1
BGM: Mangzhong of the Misty Lake
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: Mankind Salvation Plan ~ The Greatest Salvation
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: Maple Wise
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: Mary the Magician
The_Alternative_Age - Marisa's_Scenario
BGM: Mary, the Magician
The_Alternative_Age - Reimu's_Scenario
BGM: Master of Harvest Wish
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: Master of the Scarlet Moon ~ The master of red moon
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: Mechanical Circus ~ Reverie
Shuusou_Gyoku - Main_Scenario The_Alternative_Age - Marisa's_Scenario
BGM: Meets The Gates
Samidare - Extra_Scenario
BGM: Melancholy of the Cloud Painted Sky
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Memento of All Organisms ~ Memory of Fossil Energy.
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: Memento of an Avaricious Beast
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: Memento of the Avaricious Beast
Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Ran's_Scenario Unfinished_Dream_of_All_Living_Ghost - Rin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario
BGM: Memories of an Unfading Crimson
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: Meridian-Splitting Reverse Scale ~ Dragon's Dream
Infinite_Blade_Pavilion - Youmu's_Extra Infinite_Blade_Pavilion - Reimu's_Extra
BGM: Mermaid from the Uncharted Land
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: Metal Bullet Hell
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: Meteors Illuminating the Night Sky
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: Mikuzume's Mind Game
Servants_of_Harvest_Wish - Ryouko's_Extra Servants_of_Harvest_Wish - Marisa's_Extra Servants_of_Harvest_Wish - Reimu's_Extra Servants_of_Harvest_Wish - Sanae's_Extra
BGM: Milky Broadway
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: Miria the Sylphid
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
BGM: Mist Lake
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: Misty Flight
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: Monjudou Keepers
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: Mukayu no Sato ~ Deep Mountain
Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario
BGM: Muse
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
BGM: Mushroom Waltz
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM: Mystery is Your Mirage
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: Nameless Discord
Wonderful_Waking_World - Reimu's_Extra Wonderful_Waking_World - Marisa's_Extra Wonderful_Waking_World - Sanae's_Extra
BGM: Nameless Innocence ~ Embryo's Requiem
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: Naruko Stream
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: Native Faith
Mountain_of_Faith - Marisa's_Extra Mountain_of_Faith - Reimu's_Extra
BGM: Necrofantasia
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra
BGM: Neighborhood Lost World
The_Last_Comer - Marisa's_Extras The_Last_Comer - Reimu's_Extras
BGM: Neo Bamboo Forest in Flames
Urban_Legend_in_Limbo - Reisen's_Scenario
BGM: Night Falls
Scarlet_Weather_Rhapsody - Reisen's_Scenario
BGM: Night Falls ~ Evening Star
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario Concealed_the_Conclusion - Part_Two Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: Night Falls ~ Evening Star
Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario
BGM: Night Sakura of Dead Spirits
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: Night-Blooming Camellia ~ Heart of the Swarm
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: No More Going Through Doors
Sunken_Fossil_World - Yuuma's_Scenario Hidden_Star_in_Four_Seasons - Cirno's_Extra Hidden_Star_in_Four_Seasons - Reimu's_Extra Hidden_Star_in_Four_Seasons - Aya's_Extra Hidden_Star_in_Four_Seasons - Marisa's_Extra Sunken_Fossil_World - Greedy_Challenge
BGM: Nostalgic Blood of the East ~ Old World
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Occult Attract
Urban_Legend_in_Limbo - Reisen's_Scenario
BGM: Occult a la carte
Urban_Legend_in_Limbo - Demo_Scenario
BGM: Occult à la Carte
Urban_Legend_in_Limbo - Demo_Scenario Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: Old Yuanshen
Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: Old Yuanxian
Ten_Desires - Reimu's_Scenario
BGM: Omiwa Legend
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario
BGM: Omote-Rokkō at Night
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: One Moment's Splendour
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: Ore from the Age of the Gods
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: Oriental Dark Flight
Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: Our Hisou Tensoku
Touhou_Hisoutensoku - Sanae's_Scenario
BGM: Our Opinions
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: Out of Place Magical Girl
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
BGM: Outside World Folklore
Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: Over Lake Highway
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: Overtake!
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: Overthrown Forces
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: Pandemonic Planet
Legacy_of_Lunatic_Kingdom - Reimu's_Extra Legacy_of_Lunatic_Kingdom - Reisen's_Extra Legacy_of_Lunatic_Kingdom - Sanae's_Extra Legacy_of_Lunatic_Kingdom - Marisa's_Extra
BGM: Paradise ~ Deep Mountain
Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: Paradise ~ Deep Mountain[1]
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: Pass Through the Front Line's Wind ~ Flow Scale
White_Names_Spoiled_Past - Sanae_and_Minayu's_Extra White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Extra White_Names_Spoiled_Past - Reimu_and_Tokubi's_Extra
BGM: Peaceful Tribulation ~ Over the Garden
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Peer 2 Utopia
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: Petal Waves Through the Fields
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: Phantom Band ~ Phantom Ensemble
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: Phantom of the Sky Sabre
Over_the_Developed_Eden - Shinmyoumaru's_Phantom Over_the_Developed_Eden - Marisa's_Phantom Over_the_Developed_Eden - Reimu's_Phantom Over_the_Developed_Eden - Sumireko's_Phantom
BGM: Philinion's Resurrection
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: Pieces of the Sky
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Pierce Through the Raging Winds
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: Pierrot of the Star-Spangled Banner
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: Pierrot's Dream
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: Plain Asia
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Plastic Mind
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario Concealed_the_Conclusion - Scenario_D Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: Please Make Me Greet You......
Banshiryuu - Hirano's_Scenario_(C67_version)
BGM: Poltergeist Circus[1] ~ Reverie
The_Alternative_Age - Reimu's_Scenario
BGM: Poppet of Nemesis
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: Popular Location
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: Power of Darkness
Story_of_Eastern_Wonderland - Regular_Stages
BGM: Power of the Shattering Sky
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Pretty Apricot
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: Primordial Beat ~ Pristine Beat
Double_Dealing_Character - Sakuya_A's_Extra Double_Dealing_Character - Reimu_A's_Extra Double_Dealing_Character - Marisa_A's_Extra Double_Dealing_Character - Marisa_B's_Extra Double_Dealing_Character - Reimu_B's_Extra Double_Dealing_Character - Sakuya_B's_Extra Double_Dealing_Character - Marisa's_Extra
BGM: Primrose Shiver
Shuusou_Gyoku - Main_Scenario
BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
Unfinished_Dream_of_All_Living_Ghost - Tsukasa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Otter) Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Otter) Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Eagle)
BGM: Princess of Blighted Obstruction
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: Princess of the Green Skies ~ Sky Garden
White_Names_Spoiled_Past - Sanae_and_Minayu's_Extra White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Extra White_Names_Spoiled_Past - Reimu_and_Tokubi's_Extra
BGM: Pristine Guardian Puppet
Little_Doll_Queen - Medicine's_Scenario Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: Prominence of a Shy Heron
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: Provincial Makai City Esoteria
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario
BGM: Pumpkin of September
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: Pure Furies ~ Whereabouts of the Heart
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: Quenching Rain of Mystical Skies
Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Extra Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Extra Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Extra
BGM: R'lyeh, the Capital of the Dead
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: Rainy Torifune Shrine
White_Names_Spoiled_Past - Sanae_and_Minayu's_Extra White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Extra White_Names_Spoiled_Past - Reimu_and_Tokubi's_Extra
BGM: Rappacchini’s Garden of Lethal Poisons ~ Erosion Mental
Little_Doll_Queen - Medicine's_Scenario Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: Reach for the Moon, Immortal Smoke
Imperishable_Night - Barrier_Team's_Extra Imperishable_Night - Netherworld_Team's_Extra Imperishable_Night - Scarlet_Team's_Extra Imperishable_Night - Magic_Team's_Extra Concealed_the_Conclusion - Scenario_B Imperishable_Night - Boundary_Team's_Extra Imperishable_Night - Ghost_Team's_Extra
BGM: Rear Temple Path of Youkai
Ten_Desires - Marisa's_Extra Ten_Desires - Youmu's_Extra Ten_Desires - Sanae's_Extra Ten_Desires - Reimu's_Extra
BGM: Rear Temple Path of Youkai ~ Secret Technology
Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: Rebel of the War God's Five Weapons ~ REBELLION God Force
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: Recollection of Gravel and Dust ~ Vanishing Memories
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: Red Glow of a Medieval Evening
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: Red-pencil of Fixation ~ Fanatic Monograph
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: Retribution for the Eternal Night ~ Imperishable Night
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Retrospective Kyoto
Concealed_the_Conclusion - Scenario_B
BGM: Reverse Ideology
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: Reversed Wheel of Fortune
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: Ridicule of the Evernight God
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: Ridiculous Game
Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario
BGM: Rigid Paradise
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: Rising Sun Moon Viewing ~ Best Wishes
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: Romantic Children
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: Rural Makai City Esoteria
Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: Sado no Futatsuiwa
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario
BGM: Sakura Path ~Jinguuji Skirmish~
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: Sakura Radiance ~ Blooming Elegance
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Sapphire Mothership ~ Thalassic Izanami
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: Satori Maiden ~ 3rd Eye
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: Satori Maiden ~ 3rd eye
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: Scarlet Night
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: Scarlet Symphony ~ Scarlet Phoneme
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: Scattered Candlelight ~ Candlelight
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: Scheming Outside the Box
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: Screen of Morning Mist
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: Sealed Yokai ~ Lost Place
Subterranean_Animism - Reimu_and_Yukari's_Scenario
BGM: Seamless Clothing of the Celestials
Scarlet_Weather_Rhapsody - Marisa's_Scenario
BGM: Search for the Zephyranthes ~ Searching Youkai
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: Secret God Matara
Sunken_Fossil_World - Yuuma's_Scenario
BGM: Secret God Matara ~ Hidden Star in All Seasons.
Hidden_Star_in_Four_Seasons - Cirno's_Extra Hidden_Star_in_Four_Seasons - Reimu's_Extra Hidden_Star_in_Four_Seasons - Aya's_Extra Hidden_Star_in_Four_Seasons - Marisa's_Extra
BGM: Seeping Through the Blue Canopy
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: Selene's Light
Lotus_Land_Story - Marisa's_Scenario
BGM: Septette for a Dead Princess [12]
Embodiment_of_Scarlet_Devil - Marisa's_Scenario
BGM: Septette for a Dead Princess [9]
Embodiment_of_Scarlet_Devil - Reimu's_Scenario
BGM: Septette for the Dead Princess
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario
BGM: Seraphic Chicken
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Sunken_Fossil_World - Kanako's_Scenario Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter) Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: Seven Flowers of the Deep Sea ~ Forgotten Benefit
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: Seven-Orb Collection Showdown
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Demo_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario
BGM: Shanghai Alice of Meiji 17 [Meiji 17: The 17th year of the Meiji era, 1884]
Concealed_the_Conclusion - Scenario_A
BGM: Shanghai Alice of Meiji 17[3]
Embodiment_of_Scarlet_Devil - Marisa's_Scenario
BGM: Shanghai Alice of Meiji 17[5]
Embodiment_of_Scarlet_Devil - Reimu's_Scenario
BGM: Shanghai Scarlet Teahouse ~ Chinese Tea
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario Concealed_the_Conclusion - Scenario_A
BGM: She's in a temper!!
Story_of_Eastern_Wonderland - Regular_Stages
BGM: Sheep Spirits Dancing Under Strange Stars
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: Shine Into the Distance, Moon of the Ruined Castle
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: Shining Armillary Sphere
Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: Shocking Assailant
Banshiryuu - Hirano's_C74_Extra Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_C74_Extra
BGM: Shoutoku Legend ~ True Administrator
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Mamizou's_Scenario
BGM: Showdown! Trial of the Wish-Fulfilling Jewel
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: Silence
Immaterial_and_Missing_Power - Suika's_Scenario
BGM: Silk Road Alice
Shuusou_Gyoku - Extra_Scenario
BGM: Six Poetry Immortals of Old ~Love letter from ?
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: Skies Beyond the Clouds
Scarlet_Weather_Rhapsody - Suika's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario
BGM: Sky Ruin
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: Sky-Filling Departed Spirit ~ Lightning Word
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: Skygazer
Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario
BGM: Sleeping Terror
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario Concealed_the_Conclusion - Scenario_D
BGM: Smoking Dragon
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: Snow at the Human Village and the Dancing Fairies
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: Snowflakes Blooming in Profusion ~ Sakurachill Blossom
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: Solar Envoy Who Attracts the Hearts of All
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: Solar Sect of Mystic Wisdom
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: Solar Sect of Mystic Wisdom ~ Nuclear Fusion
Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: Solitary Place
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario
BGM: Song of the Ice on the Lake's Surface ~ The rhythm of ice
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: Song of the Night Sparrow ~ Night Bird
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Soul Eater from the Abyss
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: Source of the Starry River, Dragon of the Grass-Mowing Sword
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Extra Riverbed_Soul_Saver - Futo_and_Miko's_Extra Riverbed_Soul_Saver - Reimu_and_Yukari's_Extra
BGM: Spirit Battle ~ Perdition crisis
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: Spirit Mausoleum of the Spirit of Language
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: Spiriting Away of Manju and Saka ~ by any other name
Servants_of_Harvest_Wish - Ryouko's_Extra Servants_of_Harvest_Wish - Marisa's_Extra Servants_of_Harvest_Wish - Reimu's_Extra Servants_of_Harvest_Wish - Sanae's_Extra
BGM: Spiritual Domination
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra
BGM: Spiritual Domination ~ Who done it!
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: Spiritual Heaven
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: Spiritual Soul Drowning in the Sea of Sin
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: Spread Bullets Over the Sunset
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: Spring Lane ~ Colorful Path
Phantasmagoria_of_Flower_View - Marisa's_Scenario Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Mamizou's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: Staking Your Life on a Prank
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
BGM: Stardust Desire
Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: Stardust Shambler
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: Starry Mountain of Tenma
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: Starry Sky of Small Desires
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: Starve Calamity
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: Steel is Born from Flame, and Returns to the Earth
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: Strange Bird of the Moon, Illusionary Cat
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: Strange Bird of the Moon, Illusionary Cat ~ Alternative Age
The_Alternative_Age - Marisa's_Scenario
BGM: Strange Tales of the Centenarian Girls ~ The mystery
Fantastic_Danmaku_Festival - Sanae's_Extra Fantastic_Danmaku_Festival - Reimu's_Extra Fantastic_Danmaku_Festival - Marisa's_Extra
BGM: Strong Attack
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: Strong Wind Scatters the Clouds ~ Kongfu storm
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: Submarine Illusion
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: Summertime Rhapsody of a Dying World
Wonderful_Waking_World - Reimu's_Extra Wonderful_Waking_World - Marisa's_Extra Wonderful_Waking_World - Sanae's_Extra
BGM: Super I.I.G.G
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
BGM: Surpass the Gate of the Silver Key
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: Swift Battle
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: Swim Through a Sakura-Colored Sea
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: Swing a Fish to Drive Away Flies
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario Touhou_Hisoutensoku - Cirno's_Scenario
BGM: Sword of the Fallen Hero ~ Legend of Sanada
Book_of_Star_Mythology - Reimu's_Extra Book_of_Star_Mythology - Marisa's_Extra Book_of_Star_Mythology - Sanae's_Extra
BGM: THE STRENGTH
Banshiryuu - Hirano's_Scenario_(C67_version)
BGM: Take Thy Danmaku In Hand, O Bulletphiles
100th_Black_Market - Dialogue
BGM: Tamatsushima Floating City
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: Tatara the Furnace
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: Tempered Temple
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: Tenacity of the Youthful Divinity
The_Shattered_Sky - Sanae's_Heaven The_Shattered_Sky - Reimu's_Heaven The_Shattered_Sky - Marisa's_Heaven
BGM: Tengu is Watching ~ Black Eyes
Concealed_the_Conclusion - Scenario_C
BGM: Tengu's Cyclone of the Sky
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Tenmu Meteor ~ Royal Monster
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: The 1110th Year's Legend of Tobiume
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: The Bridge People No Longer Cross
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: The Broken Sky Reflected by the Lake ~ Crustacean Parade
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
BGM: The Butterfly of Isaac the Traveler
Marine_Benefit - Sanae's_Extra Marine_Benefit - Marisa's_Extra
BGM: The Capital City of Flowers in the Sky
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: The Centennial Festival for Magical Girls
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Extra Embodiment_of_Scarlet_Devil - Reimu's_Extra Frantically_Forbidden_Fruit - Sakuya's_Legacy_Extra Frantically_Forbidden_Fruit - Reimu's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Paradise_Extra Frantically_Forbidden_Fruit - Sakuya's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Legacy_Extra Frantically_Forbidden_Fruit - Sanae's_Legacy_Extra Frantically_Forbidden_Fruit - Yuuka's_Paradise_Extra Frantically_Forbidden_Fruit - Yuuka's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Legacy_Extra
BGM: The Cliff Hidden in Deep Green
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: The Colorful Maiden, Through the Colorless World
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
BGM: The Coming of Brilliant Lights and Vibrant Colors
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: The Concealed Four Seasons
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: The Country of Gold Rests Not Tonight
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: The Crab's One Way Cycle ~ Sideways Motion
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
BGM: The Curtain Shall Rise Soon
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM: The Dark Blowhole
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Kanako's_Scenario Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: The Deity's Golden Spotlight Enters Here
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: The Deity's Illusionary Black Flame is Summoned Here
Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: The Deity's White Knight of the Midnight Sun Descends Here
Terminus_of_Unreal_Darkside - Reimu's_Scenario
BGM: The Deviants' Unobstructed Light ~ Kingdom of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Tsukasa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario Unfinished_Dream_of_All_Living_Ghost - Sanae's_Scenario Unfinished_Dream_of_All_Living_Ghost - Rin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
BGM: The Doll Maker of Bucresti
Immaterial_and_Missing_Power - Yukari's_Scenario
BGM: The Doll Maker of Bucuresti
Immaterial_and_Missing_Power - Reimu's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: The Dollmaker of Bucuresti
Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: The Equations that the General Loved
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: The Exaggerated Castle Keep
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: The Fabled Land of Onigashima ~ Missing Power[10]
Immaterial_and_Missing_Power - Sakuya's_Scenario
BGM: The Fabled Land of Onigashima ~ Missing Power[15]
Immaterial_and_Missing_Power - Yuyuko's_Scenario
BGM: The Fabled Land of Onigashima ~ Missing Power[1]
Immaterial_and_Missing_Power - Suika's_Scenario
BGM: The Fabled Land of Onigashima ~ Missing Power[2]
Immaterial_and_Missing_Power - Alice's_Scenario
BGM: The Fabled Land of Onigashima ~ Missing Power[3]
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: The Fabled Land of Onigashima ~ Missing Power[6]
Immaterial_and_Missing_Power - Youmu's_Scenario
BGM: The Fabled Land of Onigashima ~ Missing Power[8]
Immaterial_and_Missing_Power - Yukari's_Scenario
BGM: The Fabled Land of Onigashima ~ Missing Power[9]
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario
BGM: The Fantastic Tales from Tono
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: The Fire of Hokkai
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario
BGM: The Floating Objects in the Sky X
Touhou_Hisoutensoku - Sanae's_Scenario
BGM: The Flower of Shadow Brings the Fragrance of Night
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: The Forgotten Nameless One
Abyss_Soul_Lotus - Byakuren_and_Miko's_Extra Abyss_Soul_Lotus - Reimu_and_Yukari's_Extra Abyss_Soul_Lotus - Marisa_and_Okina's_Extra
BGM: The Four Seasons' Flowers Dance in the Sun
Frantically_Forbidden_Fruit - Sakuya's_Legacy_Extra Frantically_Forbidden_Fruit - Reimu's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Paradise_Extra Frantically_Forbidden_Fruit - Sakuya's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Legacy_Extra Frantically_Forbidden_Fruit - Sanae's_Legacy_Extra Frantically_Forbidden_Fruit - Yuuka's_Paradise_Extra Frantically_Forbidden_Fruit - Yuuka's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Legacy_Extra
BGM: The Frozen Eternal Capital
Legacy_of_Lunatic_Kingdom - Reimu's_Scenario
BGM: The Gensokyo the Gods Loved
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: The Gods' Opinions
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: The Golden Sun and the Cloud-Coloured Horizon
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: The Great Fantastic Underground Railway Network
Unconnected_Marketeers - Sanae's_Extra Unconnected_Marketeers - Marisa's_Extra Unconnected_Marketeers - Reimu's_Extra Unconnected_Marketeers - Sakuya's_Extra
BGM: The Ground's Color is Yellow
Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Demo_Scenario
BGM: The Ground's Color is Yellow ~ Primrose
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: The Ground's Colour is Yellow
Scarlet_Weather_Rhapsody - Marisa's_Scenario
BGM: The Hall of Dreams' Great Mausoleum
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: The Hazy Lake
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: The Heavens
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: The Hundredth Black Market
100th_Black_Market - Dialogue
BGM: The Inevitably Forbidden Game
Lotus_Land_Story - Marisa's_Extra Lotus_Land_Story - Reimu's_Extra
BGM: The Inverted Castle Lit by the Setting Sun
Antinomy_of_Common_Flowers - Nitori's_Scenario
BGM: The Kodama's Summer Night Festival
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: The Lake Reflects the Pure Moonlight
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: The Lamentations Known Only by Jizo
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: The Lapis Lazuli Star's Wish ~ Dream Star's Wish
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: The Legend of KAGE
Concealed_the_Conclusion - Scenario_D
BGM: The Legendary Titan
Touhou_Hisoutensoku - Sanae's_Scenario
BGM: The Light Breeze and the Flower Field
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: The Long-Awaited Oumagatoki
Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: The Lost Emotion
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: The Lost Emotion ~ Tree of Life
Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: The Magic Straw-Hat Jizo
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: The Maid And The Pocket Watch Of Blood
Immaterial_and_Missing_Power - Alice's_Scenario
BGM: The Maid and The Pocket Watch of Blood
Immaterial_and_Missing_Power - Marisa's_Scenario
BGM: The Maid and the Pocket Watch of Blood
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Concealed_the_Conclusion - Scenario_A
BGM: The Moon
Immaterial_and_Missing_Power - Suika's_Scenario
BGM: The Moon Rabbit and the Forbidden Fruit ~ Eden's Apple.
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: The Morning Star that Hides Tomorrow's Morning
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: The Mysterious Shrine Maiden Flying Through Space
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: The Obsolescent Industrial Ruins
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: The Old Ones' Promise of Eternal Life ~ AZOTH
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: The One Jointly Responsible
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: The Oni Go to the Perpetual Mountain
Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario Unfinished_Dream_of_All_Living_Ghost - Ran's_Scenario Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
BGM: The Other Side of the Galaxy
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: The Palanquin Ship Flies in the Sky
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario
BGM: The Path to Yomi Where None Turn Back
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Tsukasa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario
BGM: The Perpetual Snow of Komakusa Blossoms
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: The Pierrot of the Star Spangled Banner was Her?
Frantically_Forbidden_Fruit - Sakuya's_Legacy_Extra Frantically_Forbidden_Fruit - Reimu's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Paradise_Extra Frantically_Forbidden_Fruit - Sakuya's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Legacy_Extra Frantically_Forbidden_Fruit - Sanae's_Legacy_Extra Frantically_Forbidden_Fruit - Yuuka's_Paradise_Extra Frantically_Forbidden_Fruit - Yuuka's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Legacy_Extra
BGM: The Pot Sum of an Uncaptured Raccoon
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: The Primadonna's Burnt Wings ~ Walpurgis Nightmare
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: The Primal Scene of Japan the Girl Saw
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario
BGM: The Princess Who Slays Dragon Kings
Unconnected_Marketeers - Sanae's_Extra Unconnected_Marketeers - Marisa's_Extra Unconnected_Marketeers - Reimu's_Extra Unconnected_Marketeers - Sakuya's_Extra
BGM: The Princess who was Erased from History
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: The Rabbit Has Landed
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: The Rabbit of the Unpeaceful Banquet
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: The Red Rose's Bottled Garden ~ Demiurge of Gloriosa
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
BGM: The Refrain of the Lovely Great War
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
BGM: The Road Where Remorse Condenses
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: The Road of the Misfortune God ~ Dark Road
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: The Romance of Scrap Iron Flying in the Sky
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: The Scene of the Abyss the Girl Saw
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: The Scenery of Living Dolls
Touhou_Hisoutensoku - Cirno's_Scenario
BGM: The Sea Where One's Home Planet Reflects
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: The Sealed Cloud Route
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: The Sealed-Away Youkai
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: The Sealed-Away Youkai ~ Lost Place
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: The Shangri-La Palace Floating in the Deep Sea
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: The Shining Law of the Strong Eating the Weak
Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Otter) Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Otter) Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Eagle)
BGM: The Shining Needle Castle Sinking in the Air
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: The Singing Leader Looks Up to the Sky
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: The Sky Wanders Closer
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: The Sleeping Great Library ~ The library in silence
Fantastic_Danmaku_Festival - Patchouli's_Scenario
BGM: The Slumbering Great Library ~ The library in silence
Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: The Stone Baby and the Submerged Bovine
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: The Summer Sky Through the Looking Glass
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: The Tank Girl's Dream
Story_of_Eastern_Wonderland - Extra_Stage
BGM: The Tiger-Patterned Bishamonten
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: The Traditional Old Man and the Stylish Girl
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario Hopeless_Masquerade - Futo's_Scenario
BGM: The Unexplored World ~ Inner Space
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: The Unlimited Future of Divine Desire
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: The Value is Unrealized
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: The Venerable Ancient Battlefield
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: The Venerable Ancient Battlefield ~ Suwa Foughten Field
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: The Village Where Day to Day Has Become Meaningless
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: The Village in the Dead of Night
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: The Wilderness Walked Along by Dolls ~ Theatrical Release
Little_Doll_Queen - Medicine's_Scenario Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: The Wise Men's Planetarium
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: The Witch and the Ghost's ★ Dance Party
Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario
BGM: The Witches' Ball
Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM: The Witches' Ball ~ Magus
Shuusou_Gyoku - Extra_Scenario
BGM: The World Is Made in an Adorable Way
Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Tsukasa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario Unfinished_Dream_of_All_Living_Ghost - Ran's_Scenario Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Sanae's_Scenario Unfinished_Dream_of_All_Living_Ghost - Rin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
BGM: The Youkai Girl Before the Gate
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: The Young Descendent of Tepes [8]
Embodiment_of_Scarlet_Devil - Reimu's_Scenario
BGM: The Young Descendent of Tepes[9]
Embodiment_of_Scarlet_Devil - Marisa's_Scenario
BGM: The agonies of death
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: The bridge where no one crosses anymore
Subterranean_Animism - Reimu_and_Yukari's_Scenario
BGM: The lake reflects the cleansing moonlight
Legacy_of_Lunatic_Kingdom - Marisa's_Scenario
BGM: The rabbit swooped down
Legacy_of_Lunatic_Kingdom - Marisa's_Scenario
BGM: Theme of ******* Story
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: Thoroughbred of Shadow-Severing Speed
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: Those Who Know the Truth
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Reimu's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: Those With the Seals, Go to the Mountain
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: Thunderclouds of Magical Power
Double_Dealing_Character - Sakuya_A's_Extra Double_Dealing_Character - Reimu_A's_Extra Double_Dealing_Character - Marisa_A's_Extra Double_Dealing_Character - Marisa_B's_Extra Double_Dealing_Character - Reimu_B's_Extra Double_Dealing_Character - Sakuya_B's_Extra Double_Dealing_Character - Marisa's_Extra
BGM: Tiny Shangli-La
Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario
BGM: Tiny Shangri-La
Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario Unfinished_Dream_of_All_Living_Ghost - Tsukasa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario Unfinished_Dream_of_All_Living_Ghost - Sanae's_Scenario
BGM: Today's Front-Page Headline
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: Tomboyish Girl in Love
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
BGM: Tomorrow Will Be Special, Yesterday Was Not
Mountain_of_Faith - Marisa's_Extra Mountain_of_Faith - Reimu's_Extra
BGM: Tonight Stars an Easygoing Egoist ~ Egoistic Flowers
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Kanako's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: Tonight's Full Moon ~ Underworld Loup-garo!
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: Tortoise Dragon ~ Fortune and Misfortune
Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Sanae's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario
BGM: Tortoise Dragon ~ Good Fortune and Bad Fortune
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: Touching on Your Small Kaleidoscreen
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: Toward the Other Side of the Glittering Skies
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: Tracks of the Snow Hare ~ Nowhere but Everywhere
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: Treacherous Maiden ~ Judas Kiss
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: Tri-Star Attack
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: True Appearance of the Dragon
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: Turbulence Turbine
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: Two Minds of One Body
Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM: Two Ways' Enigma ~ Mythical Road
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: U.N. Owen Was Her?
Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario
BGM: U.N. Owen was Her?[2]
Embodiment_of_Scarlet_Devil - Reimu's_Extra
BGM: U.N. Owen was Her?[3]
Embodiment_of_Scarlet_Devil - Marisa's_Extra
BGM: U.N.オーエンは彼女なのか?
Sunken_Fossil_World - Yuuma's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Extra Embodiment_of_Scarlet_Devil - Reimu's_Extra Concealed_the_Conclusion - Scenario_A
BGM: UFO Romance in the Night Sky
Undefined_Fantastic_Object - Sanae_A's_Extra Undefined_Fantastic_Object - Reimu_A's_Extra Undefined_Fantastic_Object - Sanae_B's_Extra Undefined_Fantastic_Object - Reimu_B's_Extra Undefined_Fantastic_Object - Marisa_B's_Extra Undefined_Fantastic_Object - Marisa_A's_Extra
BGM: Ultimate Truth
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: Umbrella of Divine Light
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: Unascertainable Mist
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: Underworld Ley Line
Infinite_Blade_Pavilion - Youmu's_Extra Infinite_Blade_Pavilion - Reimu's_Extra
BGM: Unexpected Visitor
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario
BGM: Unforgettable greenery
Legacy_of_Lunatic_Kingdom - Marisa's_Scenario
BGM: Unforgettable, the Nostalgic Greenery
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario_(Demo)
BGM: Unknown X ~ Occultly Madness
Antinomy_of_Common_Flowers - Nitori's_Scenario Urban_Legend_in_Limbo - Reisen's_Scenario
BGM: Unknown X ~ Unfound Adventure
Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
BGM: Unlocated Hell
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: Unpopular Location
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: Usual Days
Scarlet_Weather_Rhapsody - Suika's_Scenario Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: Vampiric Cryptid Chupacabra
Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario Unfinished_Dream_of_All_Living_Ghost - Ran's_Scenario Unfinished_Dream_of_All_Living_Ghost - Rin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario
BGM: Vessel of Stars ~ Casket of Star
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: Void of Light ~ Magician's Requiem
The_Shattered_Sky - Reimu's_Phantasm The_Shattered_Sky - Marisa's_Phantasm The_Shattered_Sky - Sanae's_Phantasm
BGM: Voile Magic Library
Immaterial_and_Missing_Power - Patchouli's_Scenario
BGM: Voile, the Magic Library
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Concealed_the_Conclusion - Scenario_A
BGM: Vow of Pink Silence
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: Voyage 1969
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Voyage 1970
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Voyage of Frigate
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: Voyage_of_Frigate
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: Voyager 1969
Concealed_the_Conclusion - Scenario_B
BGM: Vulpecula et Anser
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: Walking the Streets of a Former Hell
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Sunken_Fossil_World - Kanako's_Scenario Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: Wandering about a Ghostly Field in the Night
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: Wanderings
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: Was She U.N. Owen?
Concealed_the_Conclusion - Scenario_A
BGM: Watatsumi's Wadaiko Deluge
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: Wavenumber Fluctuation ~ Kayser Kaiser
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: Way to the West
Samidare - Extra_Scenario
BGM: Welcome to Anyone Who Wants to Pray
Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: Welcome to the Gensokyo tour
Concealed_the_Conclusion - Extra
BGM: Welcome to the Subsky Tour
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: Welcome to the Youkai Temple
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: Western Children
The_Alternative_Age - Marisa's_Scenario
BGM: Western Children ~ THC Version
Concealed_the_Conclusion - Scenario_C
BGM: Where Is That Bustling Marketplace Now ~ Immemorial Marketeers
100th_Black_Market - Dialogue
BGM: Where is that Bustling Marketplace Now ~ Immemorial Marketeers
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: Where the Stars Fall
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
BGM: Wind God Girl
Scarlet_Weather_Rhapsody - Suika's_Scenario Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: Wind hole of darkness
Subterranean_Animism - Reimu_and_Yukari's_Scenario
BGM: Winding Corridor of Illusions ~ Illusive Corridor
Chaos_of_Black_Loong - Reimu_and_Marisa's_Extra Chaos_of_Black_Loong - Sakuya_and_Meiling's_Extra
BGM: Windy Waves of a Starry Sea
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: Witch of Love Potion
The_Alternative_Age - Marisa's_Scenario
BGM: Witching Dream
Lotus_Land_Story - Reimu's_Scenario
BGM: With Love from the Fairies
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: World Yamataizer
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: World of Fantasies
Story_of_Eastern_Wonderland - Regular_Stages
BGM: World's End
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: Wriggling Autumn Moon ~ Mooned Insect
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: Year-Round Absorbed Curiosity
Great_Fairy_Wars - Route_A Fairy_Wars - Route_A
BGM: Yin-Yang-Shi Serpent
Riverbed_Soul_Saver - Futo_and_Miko's_Phantasm Riverbed_Soul_Saver - Reimu_and_Yukari's_Phantasm Riverbed_Soul_Saver - Marisa_and_Patchouli's_Phantasm
BGM: Yorimashi Between Dreams and Reality ~ Necro-Fantasia
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: Yosakoi Foxtrot
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: Youkai Hook On
100th_Black_Market - Dialogue
BGM: Youkai Mountain ~ Mysterious Mountain
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: Youma Yagyō
Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario
BGM: Yume Beeing ~ Fancy Swallower
Little_Doll_Queen - Medicine's_Scenario
BGM: Yume Beeing ~ Fancy Swallower
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: Zashiki Girl's Nursery Song
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: give him a roasting
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: r.r.R.
Samidare - Extra_Scenario
BGM: the Grimoire of Alice
Mystic_Square - Yuuka's_Extra Mystic_Square - Reimu's_Extra Mystic_Square - Mima's_Extra Mystic_Square - Marisa's_Extra
BGM: the Last Judgement
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: trans--
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: {禁断の魔法 ~ Forbidden Magic
Mystic_Square - Mima's_Scenario
BGM: あの賑やかな市場は今どこに ~ Immemorial Marketeers
100th_Black_Market - Dialogue Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: あゆのかぜ
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: あゝ遥かなる聖域紀行
Over_the_Developed_Eden - Sumireko's_Extra Over_the_Developed_Eden - Shinmyoumaru's_Extra Over_the_Developed_Eden - Reimu's_Extra Over_the_Developed_Eden - Marisa's_Extra
BGM: いたずらに命をかけて
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
BGM: おてんば恋娘
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
BGM: おてんば恋娘の冒険
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: おぼれる者の心象風景 ~ Sinking Star
Sapphire_Panlogism - Hecatia's_Extra Sapphire_Panlogism - Reimu's_Extra Sapphire_Panlogism - Marisa's_Extra Sapphire_Panlogism - Shou's_Extra
BGM: お出迎えさせて項きます......
Banshiryuu - Hirano's_Scenario_(C67_version)
BGM: お宇佐さまの素い幡
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: かわいい悪魔 ~ Innocence
Lotus_Land_Story - Marisa's_Extra Lotus_Land_Story - Reimu's_Extra
BGM: ご近所がロストワールド
The_Last_Comer - Marisa's_Extras The_Last_Comer - Reimu's_Extras
BGM: ひもろぎ、むらさきにもえ
Story_of_Eastern_Wonderland - Regular_Stages
BGM: ほおずきみたいに紅い魂
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Touhou_Luna_Nights - Sakuya's_Extra
BGM: ほっとけーき実験室
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
BGM: ぼくらの非想天則
Touhou_Hisoutensoku - Sanae's_Scenario
BGM: もうドアには入れない
Sunken_Fossil_World - Yuuma's_Scenario Hidden_Star_in_Four_Seasons - Cirno's_Extra Hidden_Star_in_Four_Seasons - Reimu's_Extra Hidden_Star_in_Four_Seasons - Aya's_Extra Hidden_Star_in_Four_Seasons - Marisa's_Extra
BGM: もう歌しか聞こえない
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: もう歌しか聞こえない ~ Flower Mix
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: やみのちから
Story_of_Eastern_Wonderland - Regular_Stages
BGM: よさこいフォックストロット
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: アケローン彼岸旅行
Book_of_Star_Mythology - Reimu's_Extra Book_of_Star_Mythology - Marisa's_Extra Book_of_Star_Mythology - Sanae's_Extra
BGM: アザトースの中庭へ
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: アリスマエステラ
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario Concealed_the_Conclusion - Scenario_D
BGM: アルティメットトゥルース
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: アンティークテラー
Shuusou_Gyoku - Main_Scenario Concealed_the_Conclusion - Scenario_C
BGM: アンテディルビアンマザーシップ
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: アンノウンX ~ Occultly Madness
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM: アンノウンX ~ Unfound Adventure
Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
BGM: アンノウンX ~ Occultly Madness
Urban_Legend_in_Limbo - Reisen's_Scenario
BGM: アンロケイテッドヘル
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: アーケインアウグル
Sapphire_Panlogism - Hecatia's_Extra Sapphire_Panlogism - Reimu's_Extra Sapphire_Panlogism - Marisa's_Extra Sapphire_Panlogism - Shou's_Extra
BGM: イントゥ・バックドア
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: インヤンシーサーペント
Riverbed_Soul_Saver - Futo_and_Miko's_Phantasm Riverbed_Soul_Saver - Reimu_and_Yukari's_Phantasm Riverbed_Soul_Saver - Marisa_and_Patchouli's_Phantasm
BGM: エキストララブ
Story_of_Eastern_Wonderland - Extra_Stage
BGM: エクステンドアッシュ ~ 蓬莱人
Concealed_the_Conclusion - Scenario_B
BGM: エクステンドアッシュ ~ 蓬莱人
Imperishable_Night - Barrier_Team's_Extra Imperishable_Night - Netherworld_Team's_Extra Imperishable_Night - Scarlet_Team's_Extra Imperishable_Night - Magic_Team's_Extra Imperishable_Night - Boundary_Team's_Extra Imperishable_Night - Ghost_Team's_Extra
BGM: エレクトリックヘリテージ
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: エンシェントスターゲイザー
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: エーテル霧氷海
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: オカルトアトラクト
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario Urban_Legend_in_Limbo - Reisen's_Scenario
BGM: オカルトアラカルト
Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: オリエンタルダークフライト
Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: オーバースローンフォーセス
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: オーバーレイクハイウェイ
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: オールシーズン・ミスチーフ
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: カナベラルの夢幻少女
Shuusou_Gyoku - Main_Scenario
BGM: カリスト・マトリックス
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: カルバートクルーズ
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: キャプテンムラサ
Sunken_Fossil_World - Flandre's_Scenario
BGM: キャプテン・ムラサ
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: キュムロニンバスグリマス
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: クリスタライズシルバー
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: クリフォトの立て橋
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: クレイジーバックダンサーズ
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: ケテルの大樹
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: ゴーストリード
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: サブマリン幻視幻覚
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: シルクロードアリス
Shuusou_Gyoku - Extra_Scenario
BGM: シンデレラケージ ~ Kagome-Kagome
Concealed_the_Conclusion - Scenario_B
BGM: シンデレラケージ ~ Kagome-Kagome
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: ジェリーストーン
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: スカイルーイン
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: スカンディナヴィアグラキエール
Youkai_Kori_Kassen - Ran's_Scenario
BGM: スターダストシャンブラー
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: スターヴカラミティー
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: スプートニク幻夜
Shuusou_Gyoku - Main_Scenario
BGM: スモーキングドラゴン
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: スリープシープ・パレード
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario
BGM: セラフィックチキン
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: セラミックスの杖刀人
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: ゼフィランサスの検索 〜 Searching Youkai
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: タイニーシャングリラ
Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario Unfinished_Dream_of_All_Living_Ghost - Tsukasa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario Unfinished_Dream_of_All_Living_Ghost - Sanae's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario
BGM: タタラ・ザ・ファーネース
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: タービュランスタービン
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: ツインフロウス
Youkai_Kori_Kassen - Ran's_Scenario
BGM: ツェペシュの幼き末裔
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Touhou_Luna_Nights - Sakuya's_Scenario
BGM: ティアオイエツウォン
Concealed_the_Conclusion - Part_Two
BGM: ティアオイエツォン(withered leaf)
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: テーマ・オブ・*****ストーリー
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: ディザストラスジェミニ
Shuusou_Gyoku - Main_Scenario
BGM: ディープヒストリア [2]
Over_the_Developed_Eden - Shinmyoumaru's_Extra
BGM: ディープヒストリア[1]
Over_the_Developed_Eden - Sumireko's_Extra Over_the_Developed_Eden - Reimu's_Extra Over_the_Developed_Eden - Marisa's_Extra
BGM: ディーヴァズディバイス
Mystical_Power_Plant - Reimu_and_Utsuho's_Extra
BGM: デザイアドライブ
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: トリエステ号の足跡
Marine_Benefit - Sanae's_Extra Marine_Benefit - Marisa's_Extra
BGM: トータスドラゴン 〜 幸運と不運
Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Sanae's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario
BGM: トータスドラゴン ~ 幸運と不運
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: ドットマトリクスバトラーズ
Fan-made_Virtual_Autography - Sumireko's_Extra Fan-made_Virtual_Autography - Reimu's_Extra Fan-made_Virtual_Autography - Marisa's_Extra
BGM: ナイト・オブ・ナイツ
Touhou_Luna_Nights - Sakuya's_Scenario
BGM: ナルコストリーム
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: ネイティブフェイス
Mountain_of_Faith - Marisa's_Extra Mountain_of_Faith - Reimu's_Extra
BGM: ネオ竹林インフレイム
Antinomy_of_Common_Flowers - Reisen's_Scenario Urban_Legend_in_Limbo - Reisen's_Scenario
BGM: ネクロファンタジア
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra
BGM: ネフィリムの呼び声
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: ネメシスの魔法人形
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: ハルトマンの妖怪少女
Subterranean_Animism - Reimu_and_Suika's_Extra Subterranean_Animism - Reimu_and_Yukari's_Extra Subterranean_Animism - Marisa_and_Alice's_Extra Subterranean_Animism - Marisa_and_Patchouli's_Extra Subterranean_Animism - Marisa_and_Nitori's_Extra Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: ハーツフェルトファンシー
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: ハートフェルトファンシー
Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario
BGM: バイナリィスフィア
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: バンデットリィテクノロジー
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: パニックグレイヴ
Youkai_Kori_Kassen - Ran's_Scenario
BGM: パンデモニックプラネット
Legacy_of_Lunatic_Kingdom - Reimu's_Extra Legacy_of_Lunatic_Kingdom - Reisen's_Extra Legacy_of_Lunatic_Kingdom - Sanae's_Extra Legacy_of_Lunatic_Kingdom - Marisa's_Extra
BGM: ビーストメトロポリス
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: ピアトゥユートピア
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: ピエロの夢
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: ピュアヒューリーズ ~ 心の在処
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: ピンクサイレンスの誓い
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: ファントムオブスカイセイバー
Over_the_Developed_Eden - Shinmyoumaru's_Phantom Over_the_Developed_Eden - Marisa's_Phantom Over_the_Developed_Eden - Reimu's_Phantom Over_the_Developed_Eden - Sumireko's_Phantom
BGM: フィリニオンの復活
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: フォグレシアス迷夢賢者
Youkai_Kori_Kassen - Ran's_Scenario
BGM: フォルスストロベリー
Shuusou_Gyoku - Main_Scenario
BGM: フォールオブフォール ~ 秋めく滝
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: フラワリングナイト
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario Touhou_Luna_Nights - Sakuya's_Scenario
BGM: ブクレシュティの人形師
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: プラスチックマインド
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario Concealed_the_Conclusion - Scenario_D Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: プリティーアプリコット
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: プリマドンナの焼け翼 ~ Walpurgis Nightmare
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: プリムローズシヴァ
Shuusou_Gyoku - Main_Scenario
BGM: プレインエイジア
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: ボーダーオブライフ
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: ボールのある日常
Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario
BGM: マジカルストーム
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: マッシュルームワルツ
Antinomy_of_Common_Flowers - Joon's_Scenario
BGM: マッシュルーム・ワルツ
Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM: ミスティフライト
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: ミストレイク
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: ミルキーブロードウェイ
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: メイガスナイト
Great_Fairy_Wars - Extra Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario Fairy_Wars - Extra
BGM: メイドと血と懐中時計
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario
BGM: メイドと血の懐中時計
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Concealed_the_Conclusion - Scenario_A Touhou_Luna_Nights - Sakuya's_Scenario
BGM: メイド幻想 ~ Icemilk Magic
Lotus_Land_Story - Marisa's_Extra Lotus_Land_Story - Reimu's_Extra
BGM: メイプルワイズ
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: メタルバレットヘル
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: ラクトガール ~ 少女密室
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Concealed_the_Conclusion - Scenario_A
BGM: ラクトガール ~ 少女密室
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario
BGM: ラクトガール~少女密室
Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario
BGM: ラストオカルティズム ~ 現し世の秘術師
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Reimu's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: ラストリモート
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Extra Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Extra Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Extra Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Extra Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Extra Bubbling_Imaginary_Treasures - Komachi_and_Kasen's_Extra Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Extra Subterranean_Animism - Reimu_and_Suika's_Extra Subterranean_Animism - Reimu_and_Yukari's_Extra Subterranean_Animism - Marisa_and_Alice's_Extra Subterranean_Animism - Marisa_and_Patchouli's_Extra Subterranean_Animism - Reimu_and_Aya's_Extra Subterranean_Animism - Marisa_and_Nitori's_Extra Bubbling_Imaginary_Treasures - Reimu_and_Suika's_Extra Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Extra Bubbling_Imaginary_Treasures - Sanae_and_Suwako's_Extra Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Extra Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Extra
BGM: リジッドパラダイス
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: リバースイデオロギー
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: ルナレインボー
100th_Black_Market - Dialogue Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: ルーズレイン
Great_Fairy_Wars - Extra Fairy_Wars - Extra
BGM: ルーネイトエルフ
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario
BGM: レトロスペクティブ京都
Concealed_the_Conclusion - Scenario_B
BGM: ロストリバー
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: ワールドヤマタイザー
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: ヴォヤージュ 1969
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: ヴォヤージュ 1970
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: ヴォヤージュ1969
Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario_1 Concealed_the_Conclusion - Scenario_B
BGM: ヴォヤージュ1970
Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: ヴォヤージュ1969
Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario_1
BGM: ヴルペクラ・エト・アンサー
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: ヴワル魔法図書館
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Concealed_the_Conclusion - Scenario_A Touhou_Luna_Nights - Sakuya's_Scenario
BGM: 一対の神獣
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: 一念的繁华
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: 七玉蒐集ショウダウン
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Demo_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario
BGM: 万华镜之箱
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: 万年置き傘にご注意を
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: 万物凝心的太阳使者
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 万花世界的光与影
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 上海紅茶館 ~ Chinese Tea
Concealed_the_Conclusion - Scenario_A
BGM: 上海紅茶館 ~ Chinese Tea
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
BGM: 不吹堂の飛威綱
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: 不思議の国のアリス
Mystic_Square - Reimu's_Extra Mystic_Square - Mima's_Extra Mystic_Square - Marisa's_Extra
BGM: 不朽の曼珠沙華
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: 不死之花 ~ Immortal Lotus
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: 不滅のレッドソウル
Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: 不灭之魂 ~ Everlasting Volition
Abyss_Soul_Lotus - Byakuren_and_Miko's_Extra Abyss_Soul_Lotus - Reimu_and_Yukari's_Extra Abyss_Soul_Lotus - Marisa_and_Okina's_Extra
BGM: 丑の日は撃ち返しを良らえ
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: 丑三つ時の里
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: 世界の中心でアイを叫んだ神様
Sapphire_Panlogism - Marisa's_Carrefour Sapphire_Panlogism - Hecatia's_Carrefour Sapphire_Panlogism - Reimu's_Carrefour
BGM: 世界の果て ~ World's End
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: 世界は可愛く出来ている
Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Tsukasa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario Unfinished_Dream_of_All_Living_Ghost - Ran's_Scenario Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Sanae's_Scenario Unfinished_Dream_of_All_Living_Ghost - Rin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
BGM: 东方梦之馆 East castle
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 中ノ鳥島ノ怠惰ナ砂
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: 中世纪的晚霞
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: 九月のパンプキン
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: 二つの道のエニグマ 〜 Mythical Road
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: 二百海里は宴もたけなわ ~ Prayed Feast
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: 二色蓮花蝶 ~ Ancients
Touhou_Hisoutensoku - Sanae's_Scenario Shuusou_Gyoku - Extra_Scenario
BGM: 亡き王女の為のセプテット
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario
BGM: 亡失のエモーション
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: 亡失のエモーション ~ Tree of Life
Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: 人偶們所踏上的荒野 ~ Theatrical Release
Little_Doll_Queen - Medicine's_Scenario
BGM: 人偶們所踏上的荒野 ~ Theatrical ReleaseBGM: 人形たちが切り開く荒野 ~ Theatrical Release
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: 人形のある風景
Touhou_Hisoutensoku - Cirno's_Scenario
BGM: 人形裁判
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario
BGM: 人形裁判 ~ 人の形弄びし少女
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: 人恋し神様 ~ Romantic Fall
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: 人気のある場所
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: 人気のない場所
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: 人獣夕行
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: 人里的雪和舞蹈的妖精
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: 今夜的芒上月 ~ Underworld Loup-garo!
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: 今宵は飄逸なエゴイスト(Live ver) ~ Egoistic Flowers.
Antinomy_of_Common_Flowers - Yukari's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: 以太虚无论
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: 以魚駆蠅
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario Touhou_Hisoutensoku - Cirno's_Scenario
BGM: 仰空
Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario
BGM: 伝説の巨神
Touhou_Hisoutensoku - Sanae's_Scenario
BGM: 伽藍の霊殿 ~ Hollow Mansion
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: 佐渡のニッ岩
Ten_Desires - Marisa's_Extra Ten_Desires - Youmu's_Extra Ten_Desires - Sanae's_Extra Ten_Desires - Reimu's_Extra Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: 佐渡の二ッ岩
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario
BGM: 作為龍真實的形貌
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: 価値がわからない
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: 信仰は儚き人間の為に
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario Touhou_Hisoutensoku - Cirno's_Scenario
BGM: 信仰是为了虚幻之人 loudmix
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: 偏執の朱筆 ~ Fanatic Monograph
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: 偶像に世界を委ねて ~ Idoratrize World
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: 億万劫の鐘
Antinomy_of_Common_Flowers - Reisen's_Scenario Urban_Legend_in_Limbo - Reisen's_Scenario
BGM: 光と闇のコントラスト
Youkai_Kori_Kassen - Ran's_Scenario
BGM: 光輝く天球儀
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: 兎は舞い降りた
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: 入眠
Ultimate_Vitality_of_Imagination - Aya's_Endings
BGM: 公正なる奪い合い
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario
BGM: 六十年目の東方裁判 ~ Fate of Sixty Years
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: 六花繚乱 ~ Sakurachill Blossom
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: 冰与雪的灵动
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: 冷吟閑酔
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
BGM: 凍り付いた永遠の都
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: 前線の風を追い越して ~Flow Scale
White_Names_Spoiled_Past - Sanae_and_Minayu's_Extra White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Extra White_Names_Spoiled_Past - Reimu_and_Tokubi's_Extra
BGM: 勇敢で有閑な妖怪
Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
BGM: 勇敢で有閑な妖獣
Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario
BGM: 千の試練を超えて
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario
BGM: 千年幻想郷 ~ History of the Moon
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: 华丽的恶魔之舞 The little devil dance
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 华彩飞扬 ~ Indomitable Kagura
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: 博麗 ~ Eastern Wind
Concealed_the_Conclusion - Scenario_D
BGM: 博麗 ~ Eastern Wind
Story_of_Eastern_Wonderland - Regular_Stages
BGM: 博麗キラーストリート
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: 印のある者は山へ
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: 危险的好奇心
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: 厄星の揺籠
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: 厄神様の通り道 ~ Dark Road
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: 原始の混沌の狂神 ~ Ethereal Paradise
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: 参拝者歓迎
Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: 古きユアンシェン
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: 古の六歌仙 ~Love letter from ?
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: 可愛い大戦争のリフレーン
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
BGM: 可能性を信じて
Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Reisen's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario
BGM: 合縁奇縁
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: 吸血怪獣チュパカブラ
Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario Unfinished_Dream_of_All_Living_Ghost - Ran's_Scenario Unfinished_Dream_of_All_Living_Ghost - Rin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario
BGM: 吹き荒ぶ風を突き抜けて
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: 命を導く歌 〜 Prospect Mirai
Mystical_Power_Plant - Reimu_and_Utsuho's_Extra
BGM: 唄う座頭は天を仰ぎ見る
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: 喧闹吧!在这不眠之夜
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 嘲りの遊戯
Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario
BGM: 四季の華は太陽に踊る
Frantically_Forbidden_Fruit - Sakuya's_Legacy_Extra Frantically_Forbidden_Fruit - Reimu's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Paradise_Extra Frantically_Forbidden_Fruit - Sakuya's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Legacy_Extra Frantically_Forbidden_Fruit - Sanae's_Legacy_Extra Frantically_Forbidden_Fruit - Yuuka's_Paradise_Extra Frantically_Forbidden_Fruit - Yuuka's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Legacy_Extra
BGM: 在变幻莫测的境界中漂流的意识坠向中心
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 地の色は黄色
Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario
BGM: 地の色は黄色 ~ Primrose
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: 地図の上の冒険
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: 地底に咲く薔薇
Antinomy_of_Common_Flowers - Miko's_Scenario
BGM: 地底の奥深く
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: 堕ちた英雄の剣 ~ Legend of Sanada
Book_of_Star_Mythology - Reimu's_Extra Book_of_Star_Mythology - Marisa's_Extra Book_of_Star_Mythology - Sanae's_Extra
BGM: 境界フォークロア
Urban_Legend_in_Limbo - Reisen's_Scenario
BGM: 境界フォークロア(後半)
Urban_Legend_in_Limbo - Reisen's_Scenario
BGM: 壮言大語
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario
BGM: 変わり続ける不変の景色
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: 夕焼けに弾を撒け
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: 外界フォークロア
Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: 夜が降りてくる
Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: 夜が降りてくる ~ Evening Star
Concealed_the_Conclusion - Part_Two
BGM: 夜が降りてくる ~ Evening Star
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: 夜のデンデラ野を逝く
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: 夜光煌めく江城閣
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: 夜咲きツバキ ~ Heart of the Swarm
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: 夜空のユーフォーロマンス
Undefined_Fantastic_Object - Sanae_A's_Extra Undefined_Fantastic_Object - Reimu_A's_Extra Undefined_Fantastic_Object - Sanae_B's_Extra Undefined_Fantastic_Object - Reimu_B's_Extra Undefined_Fantastic_Object - Marisa_B's_Extra Undefined_Fantastic_Object - Marisa_A's_Extra
BGM: 夜雀の歌声 ~ Night Bird
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: 夢世界フォークロア
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario
BGM: 夢想の大城カダス
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: 夢想時空
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: 夢想蜂紜 ~ Fancy SwallowerBGM: 夢想蜂紜 ~ Fancy Swallower
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: 夢機械 ~ Innocent Power
Shuusou_Gyoku - Main_Scenario
BGM: 夢殿大祀廟
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: 大きな水塊の眺望
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: 大吉キトゥン
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: 大地の底、剛欲の海
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: 大尉の愛した数式
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: 大洋の風情 ~ Fantastic Sea
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: 大神神話伝
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario
BGM: 大空を支配した竜神の宝石 ~ Quintessential Fragments
Glory_of_Deep_Skies - Reimu's_Extra
BGM: 大迷惑少女 ~ Explosion Girl
Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: 天国の大河を越えて
Glory_of_Deep_Skies - Reimu's_Extra
BGM: 天国の戦場の旱魃 〜 Weather Drive
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: 天夢流星 ~ Royal Monster
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: 天満たす御霊 ~ Lightning Word
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: 天狗が見ている ~ Black Eyes
Concealed_the_Conclusion - Scenario_C
BGM: 天空の花の都
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: 天空アーミー
Shuusou_Gyoku - Main_Scenario
BGM: 天衣無縫
Scarlet_Weather_Rhapsody - Suika's_Scenario Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: 天衣無縫 ~ Yellow Lily
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario
BGM: 失色的镜像世界
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: 妖々跋扈
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra
BGM: 妖々跋扈 ~ Who done it!
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: 妖怪の山 ~ Mysterious Mountain
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: 妖怪フックオン
100th_Black_Market - Dialogue
BGM: 妖怪寺へようこそ
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: 妖怪裏参道
Ten_Desires - Marisa's_Extra Ten_Desires - Youmu's_Extra Ten_Desires - Sanae's_Extra Ten_Desires - Reimu's_Extra
BGM: 妖怪裏参道 ~ Secret Technology
Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: 妖星に踊る羊精
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: 妖月幻化
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: 妖月幻化 ~ Alternative Age
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: 妖異達の通り雨
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: 妖精大戦争 ~ Fairy Wars
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
BGM: 妖精背水一战 A dare
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 妖精達より愛を込めて
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: 妖魔夜行
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario
BGM: 始原のビート ~ Pristine Beat
Double_Dealing_Character - Sakuya_A's_Extra Double_Dealing_Character - Reimu_A's_Extra Double_Dealing_Character - Marisa_A's_Extra Double_Dealing_Character - Marisa_B's_Extra Double_Dealing_Character - Reimu_B's_Extra Double_Dealing_Character - Sakuya_B's_Extra Double_Dealing_Character - Marisa's_Extra
BGM: 子午線を割る逆鱗 ~ Dragon's Dream
Infinite_Blade_Pavilion - Youmu's_Extra Infinite_Blade_Pavilion - Reimu's_Extra
BGM: 孤独なウェアウルフ
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: 宁静夏夜的微风
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 宇宙を飛ぶ不思議な巫女
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: 宵闇の魔術師
The_Alternative_Age - Marisa's_Scenario
BGM: 富士大人之侘 ~我心匪石~
Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Extra Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Extra Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Extra
BGM: 対決!如意宝珠の試練
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: 対蹠地の鐘
Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: 封じられた妖怪
Sunken_Fossil_World - Yuuma's_Scenario
BGM: 封じられた妖怪 ~ Lost Place
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: 小さなカレイドスクリーンを触れて
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: 小さな小さな賢将
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: 小さな欲望の星空
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: 少女が見た日本の原風景
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario
BGM: 少女さとり ~ 3rd eye
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: 少女の秘密のエピグラム
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: 少女幻葬 ~ Necro-Fantasy
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra
BGM: 少女所见的深渊风景
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: 少女神性 ~ Pandora's Box
Shuusou_Gyoku - Main_Scenario
BGM: 少女秘封ブラフ
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: 少女秘封倶楽部
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: 少女綺想曲
Immaterial_and_Missing_Power - Yuyuko's_Scenario Sunken_Fossil_World - Flandre's_Scenario
BGM: 少女綺想曲 ~ Capriccio
Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario Lotus_Land_Story - Marisa's_Scenario
BGM: 少女綺想曲 ~ Dream Battle
Sunken_Fossil_World - Yuuma's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1
BGM: 山奥のエンカウンター
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: 巫女の尻尾を追うマーメイド
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: 巫術乱声
Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: 希望の星は青霄に昇る
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: 常夜神の嘲り
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: 幅優先世界樹探検
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: 平安のエイリアン
Undefined_Fantastic_Object - Sanae_A's_Extra Undefined_Fantastic_Object - Reimu_A's_Extra Undefined_Fantastic_Object - Sanae_B's_Extra Undefined_Fantastic_Object - Reimu_B's_Extra Undefined_Fantastic_Object - Marisa_B's_Extra Undefined_Fantastic_Object - Marisa_A's_Extra
BGM: 年中夢中の好奇心
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
BGM: 幻光歳華 ~ Infinity Lightning
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: 幻夢界
Story_of_Eastern_Wonderland - Regular_Stages
BGM: 幻影回廊 ~ Illusive Corridor
Chaos_of_Black_Loong - Reimu_and_Marisa's_Extra Chaos_of_Black_Loong - Sakuya_and_Meiling's_Extra
BGM: 幻想のイドラ 〜 Novum Organum
Youkai_Kori_Kassen - Ran's_Scenario
BGM: 幻想のホワイトトラベラー
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: 幻想の地下大線路網
Unconnected_Marketeers - Sanae's_Extra Unconnected_Marketeers - Marisa's_Extra Unconnected_Marketeers - Reimu's_Extra Unconnected_Marketeers - Sakuya's_Extra
BGM: 幻想ヴィア・ドロローサ
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: 幻想万華集 ~ Anthologia
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: 幻想国家黎明 ~ Prayer Player
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: 幻想帝都
Shuusou_Gyoku - Main_Scenario
BGM: 幻想浄瑠璃
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: 幻想科学 ~ Doll's Phantom
Shuusou_Gyoku - Main_Scenario
BGM: 幻想郷のニッ岩
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: 幻想郷の二ッ岩
Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: 幻想郷ツアーへようこそ
Concealed_the_Conclusion - Extra
BGM: 幻視の夜 ~ Ghostly Eyes
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: 幼心地の有頂天
Scarlet_Weather_Rhapsody - Suika's_Scenario Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: 幽境
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario
BGM: 幽夢 ~ Inanimate Dream
Concealed_the_Conclusion - Scenario_D
BGM: 幽夢 ~ Inanimate Dream
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: 幽梦 loudmix
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: 幽竹远梦
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: 幽雅に咲かせ、墨染の桜 ~ Border of Life
Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario
BGM: 幽雅に咲かせ、墨染の桜 ~ Border of Life
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: 幽雅に咲かせ、墨染の桜~Border of Life
Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: 幽霊客船の時空を越えた旅
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: 幽霊楽団 ~ Phantom Ensemble
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: 広有射怪鳥事 ~ Till When?
Immaterial_and_Missing_Power - Yukari's_Scenario
BGM: 広有射怪鳥事 ~ Till When?
Concealed_the_Conclusion - Part_Two
BGM: 広有射怪鳥事 ~ Till When?
Immaterial_and_Missing_Power - Remilia's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario
BGM: 広有射怪鳥事 ~ Till when?
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: 広有射怪鳥事~Till When?
Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario
BGM: 座敷少女のわらべ唄
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: 廃れゆく産業遺構
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: 廃獄ララバイ
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: 开不尽的雪莲华
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: 引燃夜空的星火
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 強攻
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: 強欲な獣のメメント
Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Ran's_Scenario Unfinished_Dream_of_All_Living_Ghost - Rin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario
BGM: 弾幕を持て、バレットフィリア達よ
100th_Black_Market - Dialogue
BGM: 影絶つ速さのサラブレッド
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: 彼女の千歳飴
Sapphire_Panlogism - Marisa's_Carrefour Sapphire_Panlogism - Hecatia's_Carrefour Sapphire_Panlogism - Reimu's_Carrefour
BGM: 彼岸之云 结界之梦
Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: 彼岸帰航 ~ Riverside View
Scarlet_Weather_Rhapsody - Remilia's_Scenario
BGM: 彼岸帰航 ~ Riverside View
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: 待ちわびた逢魔が時
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: 徒名草之道 ~神宫寺祈前哨战~
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: 御伽の国の鬼が島 ~ Missing Power
Immaterial_and_Missing_Power - Yukari's_Scenario
BGM: 御伽の国の鬼が島 ~ Missing Power
Concealed_the_Conclusion - Extra
BGM: 御伽の国の鬼が島 ~ Missing Power
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: 御柱の墓場
Sunken_Fossil_World - Yuuma's_Scenario
BGM: 御柱の墓場 ~ Grave of Being
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: 微风与花田
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: 心綺楼演舞
Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario
BGM: 忘れがたき、よすがの緑
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario_(Demo)
BGM: 恋色マジック
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Touhou_Hisoutensoku - Cirno's_Scenario Story_of_Eastern_Wonderland - Regular_Stages
BGM: 恋色マスタースパーク
Sunken_Fossil_World - Yuuma's_Scenario Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: 恐怖の鎖への抗戦は空振り
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: 恒常不変の参廟祀
Antinomy_of_Common_Flowers - Nitori's_Scenario
BGM: 恥ずかしがり屋な五位鷺のプロミネンス
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: 悔恨凝结之路
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: 患わし邪魔のプリンセス
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: 悲しき人形 ~ Doll of Misery
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: 情熱的な感じで東方風オリジナル曲
Youkai_Kori_Kassen - Ran's_Scenario
BGM: 意気揚々
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM: 愛の歪 ~ Crimson Stalker.
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: 感情の摩天楼 ~ Cosmic Mind
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario
BGM: 感情の摩天楼 ~ Cosmic Mind
Undefined_Fantastic_Object - Sanae_A's_Scenario Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario
BGM: 憑依投合
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario
BGM: 憑坐は夢と現の間に ~ Necro-Fantasia
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: 懐かしき東方の血 ~ Old World
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: 戦車むすめのみるゆめ
Story_of_Eastern_Wonderland - Extra_Stage
BGM: 戦迅
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: 戦闘空域
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
BGM: 扶桑の密林
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: 拉帕其尼的劇毒花園 ~ Erosion Mental
Little_Doll_Queen - Medicine's_Scenario
BGM: 拉帕其尼的劇毒花園 ~ Erosion MentalBGM: ラパチーニの劇毒花畑 ~ Erosion Mental
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: 持ちわびた逢魔が時
Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
BGM: 振り向かない黄泉の道
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Tsukasa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario
BGM: 捕らぬ狸の壷算用
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: 探韵夷社的光君 ~ Miscanthus Love lyrics
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
BGM: 描線上の画竜点睛 ~ Irisu Magicka
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: 放縦不羈
Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario
BGM: 故郷の星が映る海
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: 散落的烛光 Candlelight
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 散雪之夕行
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
BGM: 旅人アイザックの胡蝶
Marine_Benefit - Sanae's_Extra Marine_Benefit - Marisa's_Extra
BGM: 无尽的命运 Endless fate
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 日出観月 ~ Best Wishes
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: 日常坐臥
Scarlet_Weather_Rhapsody - Suika's_Scenario Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: 日常生活が無意味となった人里
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: 日暮之下,恶魔的舞会
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: 日本中の不思記を集めて
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: 旧地獄街道を行く
Sunken_Fossil_World - Yuuma's_Scenario Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: 旧支配者の永命約束 ~ AZOTH
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: 时钟走廊 Flowing time
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 明日ハレの日、ケの昨日
Mountain_of_Faith - Marisa's_Extra Mountain_of_Faith - Reimu's_Extra
BGM: 明朝を覆う明星
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: 明治十七年の上海アリス
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Concealed_the_Conclusion - Scenario_A
BGM: 星の器 ~ Casket of Star
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: 星の器 ~ Casket of Star
Lotus_Land_Story - Reimu's_Scenario
BGM: 星の源流、草薙の剣竜
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Extra Riverbed_Soul_Saver - Futo_and_Miko's_Extra Riverbed_Soul_Saver - Reimu_and_Yukari's_Extra
BGM: 星条旗のピエロ
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: 星条旗のピエロは彼女なのか?
Frantically_Forbidden_Fruit - Sakuya's_Legacy_Extra Frantically_Forbidden_Fruit - Reimu's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Paradise_Extra Frantically_Forbidden_Fruit - Sakuya's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Legacy_Extra Frantically_Forbidden_Fruit - Sanae's_Legacy_Extra Frantically_Forbidden_Fruit - Yuuka's_Paradise_Extra Frantically_Forbidden_Fruit - Yuuka's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Legacy_Extra
BGM: 星海の風波
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: 星潮莳夜歌 ~ Aflame Inviolable Illusion
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
BGM: 星降る天魔の山
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: 春の湊に
Undefined_Fantastic_Object - Sanae_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: 春彩动荡之寂 ~盛樱之世~
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: 春色小径 ~ Colorful Path
Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Byakuren's_Scenario
BGM: 春色小径 ~ Colorful Path
Phantasmagoria_of_Flower_View - Marisa's_Scenario Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Mamizou's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: 時代の風の訪れ
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: 時代親父とハイカラ少女
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario Hopeless_Masquerade - Futo's_Scenario
BGM: 暗之花,吹来夜之香
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: 暗闇に舞え、石の花吹雪
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: 暗闇の風穴
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: 曼珠と沙華の神隠し ~ by any other name
Servants_of_Harvest_Wish - Ryouko's_Extra Servants_of_Harvest_Wish - Marisa's_Extra Servants_of_Harvest_Wish - Reimu's_Extra Servants_of_Harvest_Wish - Sanae's_Extra
BGM: 月まで届け、不死の煙
Imperishable_Night - Barrier_Team's_Extra Imperishable_Night - Netherworld_Team's_Extra Imperishable_Night - Scarlet_Team's_Extra Imperishable_Night - Magic_Team's_Extra Concealed_the_Conclusion - Scenario_B Imperishable_Night - Boundary_Team's_Extra Imperishable_Night - Ghost_Team's_Extra
BGM: 月下の策謀 ~ Angelic Night
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: 月時計 ~ ルナ・ダイアル
Immaterial_and_Missing_Power - Youmu's_Scenario Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Touhou_Luna_Nights - Sakuya's_Scenario
BGM: 月輪
Immaterial_and_Missing_Power - Suika's_Scenario
BGM: 有頂天変 ~ Wonderful Heaven
Scarlet_Weather_Rhapsody - Suika's_Scenario Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: 朝霧のスクリーン
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: 木灵们的夏夜祭
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 未開拓世界 ~ インナースペース
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: 本日の一面記事
Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Byakuren's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: 村纱船长
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: 来自仙界的新风
Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Extra Shining_Shooting_Star - Koishi's_Extra
BGM: 東方妖々夢 ~ Ancient Temple
Immaterial_and_Missing_Power - Yukari's_Scenario
BGM: 東方妖々夢 ~ Ancient Temple
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: 東方妖恋談
Immaterial_and_Missing_Power - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: 東方封魔録 〜幽幻乱舞
Story_of_Eastern_Wonderland - Regular_Stages
BGM: 東頌歌~Only Edo,Gong J-ode!
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: 林间烟雨小令
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: 柳の下のデュラハン
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: 栗鼠は電気鼠の夢を見るか?
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: 根の国のレイライン
Infinite_Blade_Pavilion - Youmu's_Extra Infinite_Blade_Pavilion - Reimu's_Extra
BGM: 桔梗塚伝説 ~ Black Ventus
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: 桜色の海を泳いで
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: 森の花にご用心
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: 森閑
Immaterial_and_Missing_Power - Suika's_Scenario
BGM: 業火マントル
Sunken_Fossil_World - Yuuma's_Scenario Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: 模·湖
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: 樱下的雅集 ~ Sacrificial Poem
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
BGM: 樱花飞舞的浅间神社
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: 機械サーカス ~ Reverie
Shuusou_Gyoku - Main_Scenario
BGM: 機界伝承 〜 Sealed Prison
Youkai_Kori_Kassen - Ran's_Scenario
BGM: 歴史から消された姫君
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: 死を賭して
Story_of_Eastern_Wonderland - Regular_Stages
BGM: 死体旅行 〜 Be of good cheer!
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Ran's_Scenario
BGM: 死体旅行 ~ Be of good cheer!
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: 死霊の夜桜
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: 死霊の都ルルイエ
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: 永夜の報い ~ Imperishable Night
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: 永恒王权契约
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: 永遠に続く回廊
Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM: 永遠の春夢
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: 永遠の満月
Concealed_the_Conclusion - Scenario_C
BGM: 沉没八万由甸的叹息
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: 沉睡中的大图书馆 The library in silence
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 沢の河童の技術力
Antinomy_of_Common_Flowers - Marisa's_Scenario
BGM: 法力の下の平等
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM: 法界の火
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: 波数高低 ~Kayser Kaiser
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: 活命の泉
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: 流光溢彩之降临
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 流月牧夜歌
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: 流転する古代信仰
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: 浮向远空的云与心
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 海燕の鳴動 ~ Natural Forecast
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: 淋满鲜血的还有谁呢 Who cares
Fantastic_Danmaku_Festival - Sanae's_Extra Fantastic_Danmaku_Festival - Reimu's_Extra Fantastic_Danmaku_Festival - Marisa's_Extra
BGM: 深海に浮かぶ桃源宮
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: 深海七花 ~ Forgotten Benefit
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: 深海星雲 ~ Nebura Stream
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Extra Riverbed_Soul_Saver - Futo_and_Miko's_Extra Riverbed_Soul_Saver - Reimu_and_Yukari's_Extra
BGM: 深淵のソウルイーター
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: 深緑に隠された断崖
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: 深緑の狸森にて
Antinomy_of_Common_Flowers - Joon's_Scenario
BGM: 渡る者の途絶えた橋
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: 湖は浄めの月光を映して
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: 湖水のビーストロード
Over_the_Developed_Eden - Shinmyoumaru's_Phantom Over_the_Developed_Eden - Marisa's_Phantom Over_the_Developed_Eden - Reimu's_Phantom Over_the_Developed_Eden - Sumireko's_Phantom
BGM: 湖面的冰之曲 The rhythm of ice
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 満月の竹林
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: 溺于罪海之魂
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: 满月星河图
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: 潮騒の小路
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: 灯火竹林
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 灵空猝灭雨
Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Extra Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Extra Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Extra
BGM: 無何有の郷 ~ Deep Mountain
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Miraculous's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Magician's_Scenario Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
BGM: 無名的純潔 ~ Embryo's RequiemBGM: 無名のイノセンス ~ Embryo's Requiem
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: 燦々サン・ミシェル
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: 狂気の瞳 ~ Invisible Full Moon
Scarlet_Weather_Rhapsody - Remilia's_Scenario
BGM: 狂気の瞳 ~ Invisible Full Moon
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: 獣王達の休息
Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario
BGM: 玉つ嶋水上都市
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: 珍客
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario
BGM: 琉璃星之愿 ~ Dream Star's Wish
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 生命無キ涜神ノ亡都
Riverbed_Soul_Saver - Futo_and_Miko's_Phantasm Riverbed_Soul_Saver - Reimu_and_Yukari's_Phantasm Riverbed_Soul_Saver - Marisa_and_Patchouli's_Phantasm
BGM: 甲論乙駁
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
BGM: 異心同体
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM: 疾风闪电
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 白波から上がるフェー達
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: 白銀の桃源郷 〜 Sweet Snow
Youkai_Kori_Kassen - Ran's_Scenario
BGM: 白银の夢幻回廊
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: 百年少女怪谈 The mystery
Fantastic_Danmaku_Festival - Sanae's_Extra Fantastic_Danmaku_Festival - Reimu's_Extra Fantastic_Danmaku_Festival - Marisa's_Extra
BGM: 看不透的雾霭
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 真夏の妖精の夢
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: 真夜中のフェアリーダンス
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
BGM: 真夜中の幻想道路 〜 Lit up way
Youkai_Kori_Kassen - Ran's_Scenario
BGM: 真実を知る者
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Reimu's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: 真紅の少女 ~ Crimson Dead!!
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: 眠れる恐怖 ~ Sleeping Terror
Concealed_the_Conclusion - Scenario_D
BGM: 眠れる恐怖 ~ Sleeping Terror
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: 知略縦横
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: 石の赤子と水中の牛
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM: 砂漠に佇む伽藍堂
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: 砕月
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: 破天荒な姫様 〜 Rude Rabbit
Youkai_Kori_Kassen - Ran's_Scenario
BGM: 礫塵の追憶 ~Vanishing memories
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: 神々が恋した幻想郷
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: 神々の見解
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: 神々の読み合った祇々
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: 神さびた古戦場
Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario
BGM: 神さびた古戦場 ~ Suwa Foughten Field
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: 神代鉱石
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: 神思,融于星夜
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 神懸かってる玄想の火焔、此処に召喚
Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: 神懸かってる白夜の騎士、此処に降臨
Terminus_of_Unreal_Darkside - Reimu's_Scenario
BGM: 神懸かってる黄金の脚光、此処に登場
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: 神欲的无限未来
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 神話世界の生き証人 ~ The Lost Comer
The_Last_Comer - Marisa's_Extras The_Last_Comer - Reimu's_Extras
BGM: 神話幻想 ~ Infinite Being
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: 神造人魚は人間の夢を見るか?
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
BGM: 禁じざるをえない遊戯
Lotus_Land_Story - Marisa's_Extra Lotus_Land_Story - Reimu's_Extra
BGM: 禁断の扉の向こうは、この世かあの世か
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: 禁断の魔法 ~ Forbidden Magic
Mystic_Square - Reimu's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: 禍機
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario
BGM: 私こそはアーバン・カッパ
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: 私達の見解
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_1 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2 White_Names_Spoiled_Past - Sanae_and_Minayu's_Scenario_-_Part_2 White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Scenario_-_Part_2
BGM: 秋雪一夜落山林
Ultimate_Vitality_of_Imagination - Aya's_Extra Ultimate_Vitality_of_Imagination - Reimu's_Extra
BGM: 秘匿されたフォーシーズンズ
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: 秘境のマーメイド
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: 秘境的人鱼
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: 秘神マターラ
Sunken_Fossil_World - Yuuma's_Scenario
BGM: 秘神マターラ ~ Hidden Star in All Seasons.
Hidden_Star_in_Four_Seasons - Cirno's_Extra Hidden_Star_in_Four_Seasons - Reimu's_Extra Hidden_Star_in_Four_Seasons - Aya's_Extra Hidden_Star_in_Four_Seasons - Marisa's_Extra
BGM: 稲田姫様に叱られるから
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Extra Frantically_Forbidden_Fruit - Reimu's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Paradise_Extra Frantically_Forbidden_Fruit - Sakuya's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Legacy_Extra Frantically_Forbidden_Fruit - Sanae's_Legacy_Extra Frantically_Forbidden_Fruit - Yuuka's_Paradise_Extra Frantically_Forbidden_Fruit - Yuuka's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Legacy_Extra
BGM: 空に浮かぶ物体X
Touhou_Hisoutensoku - Sanae's_Scenario
BGM: 空は近きに彷徨う
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: 空中に沈む輝針城
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: 空想信仰的神造耀光 ~ Effulgent World of Consciousness
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 空漠的黑与白 ~ Double Sickle of Death
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: 穿越纷繁的虚与实
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 竹取飛翔 ~ Lunatic Princess
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: 竹林インフレイム
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: 糖源郷の事実上の女王 ~ Sweets & Buster!
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: 紅き黎明に歌垣を
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: 紅夜
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: 紅楼 ~ Eastern Dream...
Touhou_Luna_Nights - Sakuya's_Scenario
BGM: 紅響曲 ~ Scarlet Phoneme
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: 純真的守護者木偶
Little_Doll_Queen - Medicine's_Scenario
BGM: 純真的守護者木偶BGM: 純粋なるガーディアンパペット
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: 素敵な墓場で暮しましょ
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: 綿津見の和太鼓デリュージ
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: 緑の空のお姫様 ~Sky Garden
White_Names_Spoiled_Past - Sanae_and_Minayu's_Extra White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Extra White_Names_Spoiled_Past - Reimu_and_Tokubi's_Extra
BGM: 緑眼のジェラシー
Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: 绯月之主 The master of red moon
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 绽放在世界终焉
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: 耸立山巅的长明灯 ~ the End of History
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: 聖な神社 俗な巫女 (Ruby Version)
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: 聖な神社 俗な巫女 (Sapphire Version)
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: 聖徳伝説 ~ True Administrator
Hopeless_Masquerade - Byakuren's_Scenario
BGM: 聖徳伝説 ~ True Administrator
Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Mamizou's_Scenario
BGM: 聖徳伝説 ~ True Administrator
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: 聖徳太子のペガサス 〜 Dark Pegasus
Unfinished_Dream_of_All_Living_Ghost - Tsukasa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario
BGM: 聖徳太子のペガサス ~ Dark Pegasus
Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Otter) Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Otter) Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Eagle)
BGM: 聖輦船空を往く
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario
BGM: 背水の楽園
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: 至る有頂天
Antinomy_of_Common_Flowers - Tenshi's_Scenario
BGM: 色無き風は妖怪の山に
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: 色褪せぬ紅の記憶
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: 芥川龍之介の河童 ~ Candid Friend
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Kokoro's_Scenario Hopeless_Masquerade - Futo's_Scenario Hopeless_Masquerade - Ichirin's_Scenario
BGM: 英豪蜃气楼
Chaos_of_Black_Loong - Reimu_and_Marisa's_Extra Chaos_of_Black_Loong - Sakuya_and_Meiling's_Extra
BGM: 華のさかづき大江山
Sunken_Fossil_World - Yuuma's_Scenario Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: 華の幻想 紅夢の宙
Shuusou_Gyoku - Main_Scenario
BGM: 華狭間のバトルフィールド
Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Byakuren's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Reimu's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: 華胥の夢
The_Alternative_Age - Reimu's_Extra The_Alternative_Age - Marisa's_Extra
BGM: 落日に映える逆さ城
Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario
BGM: 蒼き天涯を眠り通る
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: 蒼玉母船 ~ Thalassic Izanami
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: 蒼穹下ツアーへようこそ
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: 藻女のマインドゲーム
Servants_of_Harvest_Wish - Ryouko's_Extra Servants_of_Harvest_Wish - Marisa's_Extra Servants_of_Harvest_Wish - Reimu's_Extra Servants_of_Harvest_Wish - Sanae's_Extra
BGM: 虎柄の毘沙門天
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: 蠢々秋月 ~ Mooned Insect
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Netherworld_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario Imperishable_Night - Scarlet_Team's_Scenario_1 Imperishable_Night - Scarlet_Team's_Scenario_2 Imperishable_Night - Magic_Team's_Scenario_1 Imperishable_Night - Boundary_Team's_Scenario_1 Imperishable_Night - Ghost_Team's_Scenario_1
BGM: 被詛咒的花園實驗室
Little_Doll_Queen - Medicine's_Scenario
BGM: 被詛咒的花園實驗室BGM: 呪われたガーデンラボ
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: 被遗忘的无名者
Abyss_Soul_Lotus - Byakuren_and_Miko's_Extra Abyss_Soul_Lotus - Reimu_and_Yukari's_Extra Abyss_Soul_Lotus - Marisa_and_Okina's_Extra
BGM: 装飾戦 ~ Decoration Battle
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: 裏切りの少女 ~ Judas Kiss
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: 裏心
Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario
BGM: 西方チルドレン
The_Alternative_Age - Marisa's_Scenario
BGM: 西方チルドレン ~ THC Version
Concealed_the_Conclusion - Scenario_C
BGM: 見た事も無い悪夢の世界
Legacy_of_Lunatic_Kingdom - Reimu's_Extra Legacy_of_Lunatic_Kingdom - Reisen's_Extra Legacy_of_Lunatic_Kingdom - Sanae's_Extra Legacy_of_Lunatic_Kingdom - Marisa's_Extra
BGM: 見捨てられし神々を夢に求めて
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
BGM: 言霊の霊廟
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
BGM: 记忆中遥远的星星
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 賢人のプラネタリズム
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: 赤より紅い夢
Touhou_Luna_Nights - Sakuya's_Extra
BGM: 赤蔷薇的瓶中庭 ~ Demiurge of Gloriosa
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
BGM: 踊る水飛沫
Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: 軍神五兵の反逆者 ~ REBELLION God Force
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: 輝かしき弱肉強食の掟
Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Otter) Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Otter) Wily_Beast_and_Weakest_Creature - Youmu's_Extra_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Extra_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Extra_(Eagle)
BGM: 輝く天空の向こう側へ
Bubbling_Imaginary_Treasures - Komachi_and_Tenshi's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Okina's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Cirno's_Scenario Bubbling_Imaginary_Treasures - Marisa_and_Alice's_Scenario Bubbling_Imaginary_Treasures - Komachi_and_Eiki's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Aya's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_Kanako's_Scenario
BGM: 輝く針の小人族 ~ Little Princess
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: 輪廻妖精 ~ Reincarnation
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: 辉夜的指引
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
BGM: 远方的指引者
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 迷迷糊糊的时空表演
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 逆転するホイールオブフォーチュン
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: 連帯責人
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: 逸脱者達の無礙光 〜 Kingdam of Nothingness.
Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Tsukasa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario Unfinished_Dream_of_All_Living_Ghost - Sanae's_Scenario Unfinished_Dream_of_All_Living_Ghost - Rin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
BGM: 運命のダークサイド
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
BGM: 運河を行き交う人妖
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: 遍参
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: 過去の花 ~ Fairy of Flower
The_Alternative_Age - Reimu's_Extra The_Alternative_Age - Marisa's_Extra
BGM: 遠野幻想物語
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
BGM: 遥か38万キロのボヤージュ
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
BGM: 遥かに照らせ、荒城の月
Over_the_Developed_Eden - Sumireko's_Scenario Over_the_Developed_Eden - Marisa's_Scenario Over_the_Developed_Eden - Shinmyoumaru's_Scenario Over_the_Developed_Eden - Reimu's_Scenario
BGM: 邪星の宴 ~ Celestial Burst
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
BGM: 野原を飛んでゆく花弁の波
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: 金色の太陽と雲色の地平線
Servants_of_Harvest_Wish - Marisa's_Scenario Servants_of_Harvest_Wish - Ryouko's_Scenario Servants_of_Harvest_Wish - Sanae's_Scenario Servants_of_Harvest_Wish - Reimu's_Scenario
BGM: 針小棒大の天守閣
Double_Dealing_Character - Sakuya_A's_Scenario Double_Dealing_Character - Sakuya_B's_Scenario Double_Dealing_Character - Reimu_A's_Scenario Double_Dealing_Character - Marisa_A's_Scenario Double_Dealing_Character - Marisa_B's_Scenario Double_Dealing_Character - Reimu_B's_Scenario
BGM: 鈴集空想童話 ~ Sparkling Quixotic Forest
Little_Doll_Queen - Medicine's_Scenario
BGM: 鈴集空想童話 ~ Sparkling Quixotic ForestBGM: 鈴集空想童話 ~ Sparkling Quixotic Forest
Little_Doll_Queen - Satono_and_Mai's_Scenario
BGM: 銀の鍵の門を超えて
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
BGM: 鋼は炎より生じて大地に還る
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
BGM: 鏡の国のサマースカイ
Unification_of_the_Artful_Rain - Marisa's_Scenario
BGM: 钟楼战场 Bell tower
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 银河的彼方
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 镜中的幻象
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 門前の妖怪小娘
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
BGM: 閉ざせし雲の通い路
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: 開演間近
Antinomy_of_Common_Flowers - Yukari's_Scenario Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM: 闇市場は場所を選ばない
100th_Black_Market - Dialogue
BGM: 闪耀在世界尽头
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 隐世的超人 ~ Hidden Desire
Ultimate_Vitality_of_Imagination - Aya's_Extra Ultimate_Vitality_of_Imagination - Reimu's_Extra
BGM: 雨の鳥船神社
White_Names_Spoiled_Past - Sanae_and_Minayu's_Extra White_Names_Spoiled_Past - Marisa_and_Shiragiku's_Extra White_Names_Spoiled_Past - Reimu_and_Tokubi's_Extra
BGM: 雪兔的踪迹 ~ Nowhere but Everywhere
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
BGM: 雪景球で捉えられし御伽噺
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
BGM: 雲に座っているキルケ―
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
BGM: 雲外蒼天
Scarlet_Weather_Rhapsody - Suika's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario
BGM: 雾之湖的芒种
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: 霄云
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
BGM: 霊天 ~ Spiritual Heaven
Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: 霊戦 ~ Perdition crisis
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
BGM: 霊知の太陽信仰
Sunken_Fossil_World - Yuuma's_Scenario
BGM: 霊知の太陽信仰 ~ Nuclear Fusion
Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario Subterranean_Animism - Marisa_and_Alice's_Scenario Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Marisa_and_Nitori's_Scenario Subterranean_Animism - Reimu_and_Suika's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario Subterranean_Animism - Marisa_and_Patchouli's_Scenario
BGM: 霊魂の宴と生命の祭
Youkai_Kori_Kassen - Ran's_Scenario
BGM: 青木ヶ原の伝説
Concealed_the_Conclusion - Part_Two
BGM: 青柳传说
Shining_Shooting_Star - Koishi's_Scenario Shining_Shooting_Star - Marisa's_Scenario Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Scenario Shining_Shooting_Star - Sanae's_Scenario
BGM: 青空の積乱雲
Record_Of_Ice_Fairy_War - Vinca's_Scenario
BGM: 顕現した伝承の形
Urban_Legend_in_Limbo - Ichirin's_Scenario Urban_Legend_in_Limbo - Demo_Scenario Urban_Legend_in_Limbo - Shinmyoumaru's_Scenario Urban_Legend_in_Limbo - Sumireko's_Scenario Urban_Legend_in_Limbo - Kokoro's_Scenario Urban_Legend_in_Limbo - Futo's_Scenario Urban_Legend_in_Limbo - Marisa's_Scenario Urban_Legend_in_Limbo - Kasen's_Scenario Urban_Legend_in_Limbo - Reimu's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Mokou's_Scenario
BGM: 風光明媚
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Komachi's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: 風神少女
Scarlet_Weather_Rhapsody - Suika's_Scenario Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
BGM: 风中花,雪中月
Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Extra Shining_Shooting_Star - Koishi's_Extra
BGM: 风卷残云 Kongfu storm
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 飞驰于天空的废铁浪漫
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
BGM: 香る樹葉花
Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario
BGM: 駒草咲くパーペチュアルスノー
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
BGM: 騒霊サーカス ~ Reverie
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: 鬼は悠久の山に
Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Hisami's_Scenario Unfinished_Dream_of_All_Living_Ghost - Ran's_Scenario Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
BGM: 魔力の雷雲
Double_Dealing_Character - Sakuya_A's_Extra Double_Dealing_Character - Reimu_A's_Extra Double_Dealing_Character - Marisa_A's_Extra Double_Dealing_Character - Marisa_B's_Extra Double_Dealing_Character - Reimu_B's_Extra Double_Dealing_Character - Sakuya_B's_Extra Double_Dealing_Character - Marisa's_Extra
BGM: 魔女和亡灵的★Dance Party
Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario
BGM: 魔女達の舞踏会
Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
BGM: 魔女達の舞踏会 ~ Magus
Shuusou_Gyoku - Extra_Scenario
BGM: 魔所
Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario
BGM: 魔法の笠地蔵
Hidden_Star_in_Four_Seasons - Cirno's_Scenario Hidden_Star_in_Four_Seasons - Aya's_Scenario Hidden_Star_in_Four_Seasons - Marisa's_Scenario Hidden_Star_in_Four_Seasons - Reimu's_Scenario
BGM: 魔法少女十字軍
Shuusou_Gyoku - Main_Scenario
BGM: 魔法少女達の百年祭
Sunken_Fossil_World - Yuuma's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Extra Embodiment_of_Scarlet_Devil - Reimu's_Extra Frantically_Forbidden_Fruit - Sakuya's_Legacy_Extra Frantically_Forbidden_Fruit - Reimu's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Paradise_Extra Frantically_Forbidden_Fruit - Sakuya's_Paradise_Extra Frantically_Forbidden_Fruit - Reisen's_Paradise_Extra Frantically_Forbidden_Fruit - Marisa's_Legacy_Extra Frantically_Forbidden_Fruit - Sanae's_Legacy_Extra Frantically_Forbidden_Fruit - Yuuka's_Paradise_Extra Frantically_Forbidden_Fruit - Yuuka's_Legacy_Extra Frantically_Forbidden_Fruit - Youmu's_Legacy_Extra
BGM: 魔法陣 ~ Magic Square
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
BGM: 魔獣スクランブル
Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Nazrin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Aunn's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Sanae's_Scenario Unfinished_Dream_of_All_Living_Ghost - Rin's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario_(Demo) Unfinished_Dream_of_All_Living_Ghost - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
BGM: 魔界地方都市エソテリア
Undefined_Fantastic_Object - Marisa_A's_Scenario Undefined_Fantastic_Object - Marisa_B's_Scenario Undefined_Fantastic_Object - Reimu_A's_Scenario Undefined_Fantastic_Object - Reimu_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario
BGM: 魔術師メリー
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
BGM: 鳳凰鳴けり多賀城陵に
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
BGM: 黄金之国,今夜无眠
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
BGM: 黑暗少女 Dark girl
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
BGM: 黒いゲイツ
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
BGM: 黒い海に紅く ~ Legendary Fish
Scarlet_Weather_Rhapsody - Suika's_Scenario Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Patchouli's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
BGM: 龍王殺しのプリンセス
Unconnected_Marketeers - Sanae's_Extra Unconnected_Marketeers - Marisa's_Extra Unconnected_Marketeers - Reimu's_Extra Unconnected_Marketeers - Sakuya's_Extra
BGM:A Rose Blooming in the Underworld
Antinomy_of_Common_Flowers - Miko's_Scenario
BGM:An Odd Couple
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM:BGM: ハルトマンの妖怪少女
Subterranean_Animism - Reimu_and_Aya's_Extra
BGM:Being Things Eye To Eye
Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM:Being Things Eye to Eye
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario
BGM:Bell of Aeons
Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM:Bhavaagra as Far as the Eye Can See
Antinomy_of_Common_Flowers - Tenshi's_Scenario
BGM:Dream World Folklore
Antinomy_of_Common_Flowers - Sumireko's_Scenario
BGM:Equality Under the Law of Dharma
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM:Flawless as Clothing of the Celestials ~ Yellow Lily
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario
BGM:Grandiloquence
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario
BGM:Immortal Red Soul
Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM:In High Spirits
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM:In the Deep-Green Tanuki Forest
Antinomy_of_Common_Flowers - Joon's_Scenario
BGM:Neo Bamboo Forest in Flames
Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM:Occult Atract
Antinomy_of_Common_Flowers - Sumireko's_Scenario
BGM:Occult Attract
Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM:Overcoime a Thousand Trials
Antinomy_of_Common_Flowers - Tenshi's_Scenario
BGM:Overcome a Thousand Trials
Antinomy_of_Common_Flowers - Joon's_Scenario
BGM:Scheming Outside the Box
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario
BGM:Shining Armillary Sphere
Antinomy_of_Common_Flowers - Joon's_Scenario
BGM:Shinkirou Theatrical
Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario
BGM:Sleep Sheep Parade
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario
BGM:Strange Bird of the Moon, Illusionary Cat ~ Alternative Age
The_Alternative_Age - Reimu's_Scenario
BGM:The Curtain Shall Rise Soon
Antinomy_of_Common_Flowers - Yukari's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM:The Ground's Color is Yellow ~ Primrose
Antinomy_of_Common_Flowers - Futo's_Scenario
BGM:The Inverted Castle Lit by the Setting Sun
Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario
BGM:The One Jointly Responsible
Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM:The Ravine Kappa's Technological Prowess
Antinomy_of_Common_Flowers - Marisa's_Scenario
BGM:Tonight Stars an Easygoing Egoist (Live ver) ~ Egoistic Flowers
Antinomy_of_Common_Flowers - Yukari's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario
BGM:Two Minds of One Body
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM:Unknown X ~ Occultly Madness
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario
BGM:Yorimashi Between Dreams and Reality ~ Necro-Fantasia
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario
BGM: ???
Urban_Legend_in_Limbo - Reimu's_Scenario
BGM: ???BGM_ENG???
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario
BGM: ???BGM_JAP???
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario
BGM: U.N.オーエンは彼女なのか?
Sunken_Fossil_World - Joon_and_Shion's_Scenario
BGM: もうドアには入れない
Sunken_Fossil_World - Greedy_Challenge
BGM: キャプテンムラサ
Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: セラフィックチキン
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: 万年置き傘にご注意を
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: 不朽の曼珠沙華
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: 今宵は飄逸なエゴイスト ~ Egoistic Flowers
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: 封じられた妖怪
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: 少女綺想曲
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: 少女綺想曲 ~ Dream Battle
Sunken_Fossil_World - Marisa's_Scenario
BGM: 強欲な獣のメメント
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: 御柱の墓場
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: 恋色マスタースパーク
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: 憑依投合
Antinomy_of_Common_Flowers - Reimu's_Scenario
BGM: 旧地獄街道を行く
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: 暗闇の風穴
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: 有機体全てのメメント ~ Memory of Fossil Energy.
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
BGM: 業火マントル
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: 神さびた古戦場
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: 華のさかづき大江山
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: 霊知の太陽信仰
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: 魔法使いの憂鬱
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
BGM: 魔法少女達の百年祭
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario
BGM:ほおずきみたいに紅い魂
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:フラワリングナイト
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:不思議の国のアリス
Mystic_Square - Yuuka's_Extra
BGM:信仰は儚き人間の為に
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:地蔵だけが知る哀嘆
Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Reimu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Otter) Wily_Beast_and_Weakest_Creature - Marisa's_Scenario_(Wolf) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Eagle) Wily_Beast_and_Weakest_Creature - Youmu's_Scenario_(Otter)
BGM:夜の鳩山を飛ぶ -Power MIX
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:夜更けの表六甲
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:妖魔夜行
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:少女綺想曲 ~ Capriccio
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:幽夢 ~ Inanimate Dream
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:広有射怪鳥事 ~ Till When?
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:故郷の星が映る海
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:有頂天変 ~ Wonderful Heaven
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:狂気の瞳 ~ Invisible Full Moon
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:玉兎と禁断の果実 ~ Eden's Apple.
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:穏やかならぬ宴の兎
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:芥川龍之介の河童 ~ Candid Friend
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:華狭間のバトルフィールド
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:運河を行き交う人妖
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:顕現した伝承の形
Urban_Legend_in_Limbo - Reisen's_Scenario
BGM:魔女達の舞踏会
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
BGM:龍神飛至蓬莱山 ~ Oriental Mythology
Frantically_Forbidden_Fruit - Youmu's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Legacy_Scenario Frantically_Forbidden_Fruit - Reisen's_Legacy_Scenario Frantically_Forbidden_Fruit - Youmu's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Paradise_Scenario Frantically_Forbidden_Fruit - Sakuya's_Legacy_Scenario Frantically_Forbidden_Fruit - Sakuya's_Paradise_Scenario Frantically_Forbidden_Fruit - Sanae's_Legacy_Scenario Frantically_Forbidden_Fruit - Reimu's_Legacy_Scenario Frantically_Forbidden_Fruit - Yuuka's_Paradise_Scenario Frantically_Forbidden_Fruit - Marisa's_Paradise_Scenario Frantically_Forbidden_Fruit - Yuuka's_Legacy_Scenario
Those missing BGM translations would be nice to have...
Talk:Embodiment_of_Scarlet_Devil - Reimu's_Scenario
夢想蜂昀 ~ BGM: Fancy Swallower
Little_Doll_Queen - Medicine's_Scenario
開始BGM: U.N.オーエンは彼女なのか?
Touhou_Luna_Nights - Sakuya's_Scenario
開始BGM: おてんば恋娘
Touhou_Luna_Nights - Sakuya's_Extra
開始BGM: ラクトガール
Touhou_Luna_Nights - Sakuya's_Scenario
開始BGM: 亡き王女の為のセプテット
Touhou_Luna_Nights - Sakuya's_Scenario
開始BGM: 少女綺想曲
Touhou_Luna_Nights - Sakuya's_Extra
開始BGM: 恋色マスタースパーク
Touhou_Luna_Nights - Sakuya's_Scenario
開始BGM: 明治十七年の上海アリス
Touhou_Luna_Nights - Sakuya's_Scenario
開始BGM: 芥川龍之介の河童
Touhou_Luna_Nights - Sakuya's_Scenario
Very nice. I want to grab all characters now. May be let's search if they have the "Species" tag on them or not. Let's first grab the interesting articles. By that I mean pages where it's both long and has lots of links to other places:
intPgs = load() | apply(shape(0) | op()+1e-3 | aS(math.log), [4, 5]) | cut(2, 4, 5) | ~apply(lambda x,y,z: [x,y+z]) | ~sort(1) | head(1000) | deref() | k1.Wrapper()
intPgs() | display()
https://en.touhouwiki.net/wiki/Kirisame_Marisa 21.10712327049999 https://en.touhouwiki.net/wiki/Marisa 21.107090364558008 https://en.touhouwiki.net/wiki/Marisa_Kirisame 21.10690509608296 https://en.touhouwiki.net/wiki/Hakurei_Reimu 21.092436939964575 https://en.touhouwiki.net/wiki/PC-98_Reimu 21.09239900720227 https://en.touhouwiki.net/wiki/Reimu 21.09237820475397 https://en.touhouwiki.net/wiki/Reimu_Hakurei 21.092194634982484 https://en.touhouwiki.net/wiki/Yukari 20.055953193577572 https://en.touhouwiki.net/wiki/Yukari_Yakumo 20.055640635162483 https://en.touhouwiki.net/wiki/Hakurei_shrine 20.050823640393208
intPgUrls = intPgs() | cut(0) | aS(set) | k1.Wrapper()
load() | inSet(intPgUrls(), 2) | cut(2, 4) | apply(aS(bs4.BeautifulSoup) | op().find_all("p") | grep("Species") | op().text.all() | aS(list), 1)\
| filt(len, 1) | item()
/home/kelvin/anaconda3/envs/ray2/lib/python3.9/site-packages/k1lib-1.5-py3.9.egg/k1lib/cli/init.py:342: GuessedAtParserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("lxml"). This usually isn't a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.
The code that caused this warning is on line 342 of the file /home/kelvin/anaconda3/envs/ray2/lib/python3.9/site-packages/k1lib-1.5-py3.9.egg/k1lib/cli/init.py. To get rid of this warning, pass the additional argument 'features="lxml"' to the BeautifulSoup constructor.
for cli in self._cliCs: it = cli(it) # serial
['https://en.touhouwiki.net/wiki/Sakuya_Izayoi', ["ZUN's only hint in regards to this can be seen above in the section about Konohana-Sakuyahime.\n", '\nSpecies: Human\nLocation: Scarlet Devil Mansion\nAbility: Ability to manipulate time\n', 'Species: Human\nAbilities: Manipulating time\n', "\nSpecies: Human\nAbility: Manipulating time\n\n\nThere's a scarlet mansion on the edge of a lake in Gensokyo. She's a maid working there.\n\nShe heard something was going on, so she just thought she'd go out and have a look; she didn't particularly think something dangerous was happening. This is also why nobody in the Scarlet Devil Mansion was particularly upset about the flower incident.\n", '\nSpecies: Human\n', 'Species: Human\nAbility: Capable of stopping time\n']]
Very nice!
load() | tee().autoInc() | inSet(intPgUrls(), 2) | cut(2, 4) | applyMp(iden() + (aS(bs4.BeautifulSoup) | op().find_all("p") | grep("Species") | op().text.all() | aS(list)) | aS(list), bs=10, prefetch=10)\
| filt(len, 1) | deref() | aS(dill.dumps) | file("chars.pth")
3) 3, 0s elapsed
/home/kelvin/anaconda3/envs/ray2/lib/python3.9/site-packages/wurlitzer.py:211: RuntimeWarning: Failed to set pipe buffer size: [Errno 1] Operation not permitted warnings.warn(
24862) 24862, 12s elapsed
'chars.pth'
chars = cat.pickle("chars.pth") | item() | k1.Wrapper()
chars() | item()
['https://en.touhouwiki.net/wiki/Sakuya_Izayoi', ["ZUN's only hint in regards to this can be seen above in the section about Konohana-Sakuyahime.\n", '\nSpecies: Human\nLocation: Scarlet Devil Mansion\nAbility: Ability to manipulate time\n', 'Species: Human\nAbilities: Manipulating time\n', "\nSpecies: Human\nAbility: Manipulating time\n\n\nThere's a scarlet mansion on the edge of a lake in Gensokyo. She's a maid working there.\n\nShe heard something was going on, so she just thought she'd go out and have a look; she didn't particularly think something dangerous was happening. This is also why nobody in the Scarlet Devil Mansion was particularly upset about the flower incident.\n", '\nSpecies: Human\n', 'Species: Human\nAbility: Capable of stopping time\n']]
processedChars = chars() | apply(op().split("/")[-1].replace("_", " "), 0) | apply(op().strip("\n. ").split("\n").all() | joinSt() | unique(), 1) | deref() | k1.Wrapper()
processedChars() | apply(aS(fmt.h, 3), 0) | apply(apply(html.escape) | join("\n") | aS(fmt.pre), 1) | viz.Carousel(searchMode=2)
Sakuya Izayoi
ZUN's only hint in regards to this can be seen above in the section about Konohana-Sakuyahime Species: Human Location: Scarlet Devil Mansion Ability: Ability to manipulate time Abilities: Manipulating time Ability: Manipulating time There's a scarlet mansion on the edge of a lake in Gensokyo. She's a maid working there. She heard something was going on, so she just thought she'd go out and have a look; she didn't particularly think something dangerous was happening. This is also why nobody in the Scarlet Devil Mansion was particularly upset about the flower incident Ability: Capable of stopping time
Raiko Horikawa
Species: Tsukumogami Ability: Capable of making anything follow a rhythm
Benben Tsukumo
Species: Tsukumogami Ability: Capable of making sounds and performing on their own
Seija Kijin
Species: Amanojaku Ability: Capable of turning over anything
Shinmyoumaru Sukuna
Species: Inchling Ability: Using the Miracle Mallet
Kagerou Imaizumi
Species: Wolf-woman Ability: Ability to transform into a wolf on the night of the full moon
Cirno
Species: Fairy Ability: Ability to manipulate cold Ability: Ability to manipulate ice Ability: Capable of manipulating ice
Wakasagihime
Species: Mermaid Ability: Ability to grow in strength when underwater
Sekibanki
Species: Rokurokubi Ability: Ability to make her head fly
Marisa Kirisame
Species: Human Ability: Ability to use magic Ability: Capable of using magic
Yatsuhashi Tsukumo
Species: Tsukumogami Ability: Capable of making sounds and performing on their own
Reimu Hakurei
Species: Human Location: Hakurei Shrine Ability: Flying in the air Ability: Mainly flying in the air Ability: Mainly capable of flying in the sky
References to Touhou
Species of Enemy
Yukari Yakumo
Over a thousand years ago, Yukari met and became friends with a human girl named Yuyuko Saigyouji. Over time, Yuyuko was driven to suicide out of despair over her ability to control death. After Yuyuko died, her body was used to seal the Saigyou Ayakashi, a youkai tree which drained the lives of too many humans, by an unknown individual who hoped Yuyuko would never have to suffer and experience pain again. The seal was created as the boundary between life and death. Yukari continued to be friends with Yuyuko's ghost, although Yuyuko gradually forgot who she had been and why she had died[34] Yukari and Yuyuko were friends even while Yuyuko was alive more than a thousand years ago, and continued to be Yuyuko's friend after she became a ghost. Of note is that this friendship between Yuyuko and Yukari does not extend to Yukari's shikigami Ran, and Yuyuko does not mind others beating Ran up Species: Youkai Location: Unknown Ability: Manipulate boundaries Ability: Manipulating boundaries Species: youkai
Sumireko Usami
Species: High-school girl Ability: Capable of manipulating psychic powers
Byakuren Hijiri
Species: magician Ability: Using magic (specializing in magic that increases her physical abilities)
Mamizou Futatsuiwa
Her disguising abilities gain power on nights of the full moon. Since tanuki like to do things like disguising people to take on a bewildering look, they rarely do inflict direct damage. The meaning of 'disguising things' is something that resembles the fellow nue, and thus mutually, they do not appear to play the role of close-range combat youkai. Thus it is a possibility that Nue has called Mamizou over with the consideration that "since the opponent can hear ten people's conversations at the same time, one has no choice but to call over a suitable youkai for splitting into 10 + 1 = 11." Species: Bake-danuki Ability: Disguising things and herself
Reisen Udongein Inaba
Species: Moon Rabbit Abilities: Manipulating insanity [sic] Ability: Manipulating insanity Species: Human Ability: Manipulating wavelengths
Toyosatomimi no Miko
Species: Saint Ability: Capable of listening to ten people's conversations at the same time
Joon Yorigami
Species: Pestilence god Ability: Causing consumption of financial assets
Mononobe no Futo
Species: Human? (a taoist who self-identifies as a shikaisen) Ability: Manipulating feng shui
Hata no Kokoro
Species: Menreiki Ability: Ability to manipulate emotion
Kasen Ibaraki
A hermit living in the mountains, repeatedly training. She's said to appear frequently in the village and shrine and give them a nice scold. Having the ability to guide animals, even controling such fantastic beasts as dragons and the cryptid Dapeng
Doremy Sweet
Species: Baku Ability: Capable of eating and creating dreams
Nitori Kawashiro
Species: Kappa Ability: Manipulating water
Koishi Komeiji
Satori Koishi Komeiji (古明地 こいし, Komeiji Koishi) is a satori, and Satori Komeiji's younger sister. She initially appeared as the Extra stage boss of Subterranean Animism, later as a playable character in Hopeless Masquerade, Urban Legend in Limbo, and Antimony of Common Flowers To escape the fear and hatred which other beings feel towards the satori species, she attempted to destroy her mind-reading ability by closing her Third Eye. However, this had the side effect of sealing away her own conscious mind, causing her to lose all thoughts and motives; she could no longer be hated, but neither could she be loved, or even remembered by people who saw her Species: Satori Ability: Manipulating the Unconscious
Shion Yorigami
Her full name is Shion Yorigami (依神 紫苑). Shion (紫苑) comes from harujion (春紫苑), the Japanese word for the Philadelphia fleabane. [2] The flower is nicknamed as Poverty Grass (貧乏草) in which gives an emphasis to her status as a poverty goddess. Philadelphia fleabane is closely related to daisy fleabane, called in Japanese as himejoon (姫女苑), is the flower that is likely what her sister Joon is named after, thus reflecting their relationship as siblings. Interestingly enough, both the Philadelphia Fleabane and Daisy Fleabane is considered as an Invasive Species in Japan and disregarded as weeds on its native land of North America, just as the Yorigami sisters have a reputation for being two of the most despicable inhabitants of Gensokyo. In addition to that, the birth order of Yorigami sisters mayhaps influenced by the flower they are named after, as Philadelphia Fleabane usually blooms first around April and May, while Daisy Fleabane tends to bloom a few months later. On its own, Shion is also the Japanese word for Tatarian Aster. Her family name Yorigami is composed of the kanji 依, which means "reliant" or "dependent", and 神, which means "god". The first kanji is also present in the term hyoui (憑依) meaning "possession", so it is possible that Yorigami could mean "possession god" Species: Poverty god Ability: Capable of making people unlucky, including herself
Tenshi Hinanawi
Species: Fallen Celestial
Fujiwara no Mokou
Species: Human Abilities: Neither aging nor dying
Aya Shameimaru
Species: Crow Tengu Ability: Manipulating wind Species: tengu Species: Tengu Ability: Capable of manipulating wind
Patchouli Knowledge
Species: Witch Residence: Scarlet Devil Mansion Ability: Handling magic (mainly elemental magic) Species: magician Ability: The ability to use magic
Youmu Konpaku
Species: Half-human half-phantom Location: Hakugyokurou in the Netherworld Ability: Handling sword techniques Abilities: Handling sword techniques Abilities: Capable of handling sword techniques
Yuyuko Saigyouji
Saigyouji Yuyuko Species: Ghost Location: Hakugyokurou in the Netherworld Ability: Manipulating death A cheerful ghost maiden who won't go to Heaven and lives in the Netherworld. She can't remember when she died, because she's been dead for a long time. The reason why she can't rest in peace is that she must have left her regret in the human world. She's so carefree that she often acts tricky. Because of this, the straightforward Youmu is always troubled by this princess. But to tell the truth, she loves this nation outside of Gensokyo from the bottom of her heart. She's not good at physical attacks before and after death. Like other ghosts, she's always floating. She moves smoothly like a curve. You'll find yourself being defeated all of a sudden since her attack is too mysterious Yuyuko Saigyouji
Alice Margatroid
Species: Magician Location: Moderate sized house in the Forest of Magic (has no specific name) Ability: Ability to handle magic Ability: Ability to use magic Species: magician Ability: ability to manipulate dolls
Remilia Scarlet
Remilia Scarlet Species: Vampire Location: Scarlet Devil Mansion Abilities: Manipulation of fate Master of the Scarlet Devil Mansion. She looks young, but she's actually a vampire who's over 500 years old. Weak against sunlight, she has to take a parasol if she wants to go out in the daytime. Her personality is somewhat childish, and she's got maids who are basically at her beck and call, so she can be as egotistical as she wants. She's immensely powerful, so she can really kick up a fuss. Faster than the eye can follow, strong enough to crush boulders, powerful enough to manipulate demons, she's so strong it's almost not fair, so she doesn't care much for subtle technique. She may be weak against sunlight, but she has a pretty strong constitution, so as long as some bit of her still remains, say, a little bat, she can regenerate any time. She's dreadful to have as an enemy, but she's not exactly the sort of person you'd want as a friend, either
Suika Ibuki
Species: Oni Location: Some hidden country occupied by oni (currently she's living somewhere in Gensokyo) Ability: Manipulating density and sparseness Species: oni Ability: Manipulating density
Sakuya
ZUN's only hint in regards to this can be seen above in the section about Konohana-Sakuyahime Species: Human Location: Scarlet Devil Mansion Ability: Ability to manipulate time Abilities: Manipulating time Ability: Manipulating time There's a scarlet mansion on the edge of a lake in Gensokyo. She's a maid working there. She heard something was going on, so she just thought she'd go out and have a look; she didn't particularly think something dangerous was happening. This is also why nobody in the Scarlet Devil Mansion was particularly upset about the flower incident Ability: Capable of stopping time
Aya
Species: Crow Tengu Ability: Manipulating wind Species: tengu Species: Tengu Ability: Capable of manipulating wind
Iku Nagae
Species: Youkai (Oarfish)
Seiga Kaku
Species: Wicked Hermit Ability: Passing through walls
Eirin Yagokoro
Species: Lunarian Abilities: Making any drug. Natural Genius
Komachi Onozuka
Species: Shinigami Ability: Manipulating distance
Kutaka Niwatari
Species: God Ability: Capable of healing throat illnesses
Satono Nishida
Species: Human (?) Ability: Capable of drawing out people's mental energy by dancing behind them (Satono) Ability: Capable of drawing out people's vitality by dancing behind them (Mai)
Mystia Lorelei
Species: Night Sparrow Abilities: Driving people insane by singing
Hina Kagiyama
Species: Misfortune god Power: Stockpiling misfortune
Misumaru Tamatsukuri
Species: God Ability: Capable of making magatama
Tsukasa Kudamaki
Species: Kuda-gitsune Ability: Capable of slipping into places where one's soul is weak
Megumu Iizunamaru
Species: Great Tengu Ability: Capable of manipulating the starry sky
Kanako Yasaka
Species: God Ability: Creating the heavenliness (Qian (乾))
Chimata Tenkyuu
Species: God Ability: Capable of letting one relinquish ownership
Keiki Haniyasushin
The Sculptor God Crafted by Utter Isolation Keiki Haniyasushin Species: God Ability: Capable of creating idols
Tewi Inaba
Species: Youkai Rabbit Abilities: Conferring good luck to humans Species: Youkai rabbit Ability: Conferring good luck to humans A youkai-powered rabbit who cared about her health and lived long. In Eientei, she's a leader of plenty of earthborn rabbits. This time, she went outside to have fun with the rabbits that is so excited with unnatural scenery without telling the members of Eientei
Wriggle Nightbug
Species: Youkai Insect Abilities: Manipulate insects
Zanmu Nippaku
Species: Human-oni Name: Zanmu Nippaku Ability: Capable of manipulating nothingness
Yamame Kurodani
Species: Tsuchigumo Ability: Manipulating illness (mainly infectious disease)
Keine Kamishirasawa
Species: Were-hakutaku
Momiji Inubashiri
Species: White Wolf Tengu Ability: Seeing a thousand ri ahead
Takane Yamashiro
Species: Yamawaro Ability: Capable of manipulating forest qi
Satori Komeiji
Satori As a satori, Satori is capable of reading the heart and mind of any living creature, even vengeful spirits. This ability works only on those within her immediate presence,[1] and doesn't work at all on her sister, Koishi Her surname Komeiji (古明地, lit. "ancient-bright earth") is an actual Japanese surname, seen mainly in the Yamanashi prefecture. The kanji 地 in Komeiji is also used in the Japanese title of Subterranean Animism (東方地霊殿). Her given name Satori (さとり) is homophonous with the name of her species, satori (覚), but written in hiragana. "Satori" could also be interpreted as satori (悟り, lit. "understanding" or "enlightenment")
Soga no Tojiko
Species: Ghost Ability: Causing thunder
Rin Kaenbyou
Species: kasha Ability: Carrying away corpses
Aunn Komano
Species: Komainu Ability: Capable of locating Shintoism and Buddhism
Yuugi Hoshiguma
Species: Oni Ability: The ability to wield unexplainable phenomena
Urumi Ushizaki
Species: Ushi-oni Ability: Capable of changing the weight of everyday objects
Minor Characters
Dragon
Ringo
Species: Moon rabbit Ability: Capable of becoming stronger by eating dango
Shou Toramaru
Species: youkai Ability: Gathering treasures
Kyouko Kasodani
Species: Yamabiko Ability: Reflecting sound
Kaguya Houraisan
Kaguya Houraisan Species: Lunarian Ability: Manipulating eternity and the instantaneous
Minoriko Aki
Species: Harvest Goddess Abilities: Governing abundant harvest
Junko
Species: Divine spirit Ability: Capable of purifying anything
Parsee Mizuhashi
Species: Bridge Princess Ability: Manipulating jealousy
Medicine Melancholy
Species: Doll Ability: Manipulating poison
Enoko Mitsugashira
Species: Immortal yamainu Name: Enoko Mitsugashira Ability: Capable of manipulating traps
Saki Kurokoma
Matriarch of the Keiga Family Saki Kurokoma Species: Kurokoma Ability: Capable of having unmatched leg strength
Lyrica Prismriver
Lyrica Prismriver Species: Poltergeist Abilities: Performing illusionary notes The third daughter of the Prismriver Sisters, who are always busy going to and fro to perform in concerts. Specializing in keyboards, she uses illusionary sounds lost from this world. She didn't think much of the "flower incident"; all she saw was Gensokyo in a hubbub, so she went out to collect sound material without telling her sisters
Nue Houjuu
Nue Her full name is Nue Houjuu (封獣 ぬえ). Like Satori, her first name is also the name of her species, nue. Nue's family name, Houjuu (封獣), literally translates to "sealed beast". "封" might be in reference to Nue's imprisonment underground prior to the events of Undefined Fantastic Object Species: Nue Ability: Making her true form unknown Nue Houjuu Species: nue Ability: Making her true form unknown A strange and wondrous youkai that lives in Myouren Temple. The saint that Byakuren had been holding back had finally resurrected. When she heard about this, she decided to pay back what she owed Byakuren from last time (UFO) and called on an old youkai friend in order to increase the power of the youkai. Naturally, she kept this a secret from Byakuren. As a result, another youkai came to live at Myouren Temple. Thus, she only served to make Byakuren even busier
Yachie Kicchou
Matriarch of the Kiketsu Family Yachie Kicchou Species: Jidiao Ability: Capable of making people lose the will to fight back
Suwako Moriya
Species: God Ability: Creating earthliness
Kisume
Species: Tsurube otoshi Ability: Dropping will-o'-the-wisps
Nemuno Sakata
Species: Yamanba Ability: Capable of creating sanctuaries
Dragon (God)
Dragon (God)
Narumi Yatadera
Species: Magician (Jizo) Ability: Capable of using magic (control of life)
Hisami Yomotsu
Species: Yomotsu-shikome Name: Hisami Yomotsu Ability: Capable of never letting anything slip from her grasp
Mike Goutokuji
Species: Maneki-neko Ability: Capable of beckoning in money or customers
Shizuha Aki
Species: Goddess of autumn leaves Abilities: Governing autumn leaves
Minamitsu Murasa
Species: Ship phantom Ability: Causing water-related accidents
Eternity Larva
Species: Fairy Ability: Capable of scattering scales
Laika
Dragon
Sanae Kochiya
Species: Human Occupation: Wind Priestess Ability: Causing miracles Ability: Capable of causing miracles
Yoshika Miyako
Species: Jiang shi Ability: Eating anything (humans bitten by her turn into a jiang shi temporarily) Species: Jiang shi. Ability: The ability to eat anything. (Humans bitten by her temporarily become jiang shi as well.)
Seiran
Species: Moon rabbit Ability: Capable of firing bullets from a different dimension
Merlin Prismriver
Merlin Prismriver Species: Poltergeist Abilities: Performing maniac notes The second daughter of the Prismriver Sisters, who are always busy going to and fro to perform in concerts. Specializing in brass instruments, she uses sounds that can uplift the soul. She has absolutely no interest in the flower incident
Hecatia Lapislazuli
Species: God Ability: Capable of having three bodies
Sannyo Komakusa
Species: Yamajorou Ability: Capable of controlling people's minds with tobacco smoke
Mayumi Joutouguu
Species: Haniwa Ability: Capable of directly turning her loyalty into strength
Yuuma Toutetsu
Species: Taotie Ability: Capable of absorbing anything
Clownpiece
Species: Fairy Ability: Capable of driving people mad
Mai Teireida
Species: Human (?) Ability: Capable of drawing out people's mental energy by dancing behind them (Satono) Ability: Capable of drawing out people's vitality by dancing behind them (Mai)
Yuuka Kazami
Kazami Yuuka Species: Youkai Ability: Manipulating flowers
Kogasa Tatara
Kogasa Tatara (多々良 小傘, Tatara Kogasa) is a karakasa obake whose sole purpose is to surprise people. However, she hasn't been very successful so far. She encounters the heroine on their way to catch up with the flying object on a mission to scare her, but it doesn't work. She was once a normal umbrella in the outside world; forgotten by her owner, and no one else claimed her because the colour was unpopular at the time. As time went on, the wind swept her away to Gensokyo and she became a youkai. According to her profile in Undefined Fantastic Object, she is currently reading up on classic ghost stories in order to improve her scaring technique
Sagume Kishin
Species: Lunarian Ability: Capable of inverting a situation by speaking about it
Chiyari Tenkajin
Species: Tenkajin Name: Chiyari Tenkajin Ability: Capable of manipulating blood & fire
Character Pages
Species: Night Sparrow Abilities: Driving people insane by singing
Kosuzu%27s Grandfather
Dragon
Momoyo Himemushi
Species: Oomukade Ability: Capable of eating dragons
Lunasa Prismriver
Lunasa Prismriver Species: Poltergeist Abilities: Performing melancholic notes The oldest daughter of the Prismriver Sisters, who are always busy going to and fro to perform in concerts. Specializing in stringed instruments, she uses sounds that depress the spirit. She has nothing to do whatsoever with the "flower incident"
Okina Matara
Species: Secret God Ability: Capable of creating doors on the back of anything
Son Biten
Species: Sarugami Name: Son Biten Ability: Capable of manipulating wild monkeys
Eika Ebisu
Species: Soul of a stillborn child Ability: Capable of stacking stones well
Minoriko
Species: Harvest Goddess Abilities: Governing abundant harvest
Standardization of Character Pages
Their Species (opt.)
Shikieiki Yamaxanadu
Species: Yama Ability: Establishing things as clear good and evil
Yuuka
Kazami Yuuka Species: Youkai Ability: Manipulating flowers
Reimu
Species: Human Location: Hakurei Shrine Ability: Flying in the air Ability: Mainly flying in the air Ability: Mainly capable of flying in the sky
Marisa
Species: Human Ability: Ability to use magic Ability: Capable of using magic
Youmu
Species: Half-human half-phantom Location: Hakugyokurou in the Netherworld Ability: Handling sword techniques Abilities: Handling sword techniques Abilities: Capable of handling sword techniques
Yamame
Species: Tsuchigumo Ability: Manipulating illness (mainly infectious disease)
Hinanawi Tenshi
Species: Fallen Celestial
Tewi
Species: Youkai Rabbit Abilities: Conferring good luck to humans Species: Youkai rabbit Ability: Conferring good luck to humans A youkai-powered rabbit who cared about her health and lived long. In Eientei, she's a leader of plenty of earthborn rabbits. This time, she went outside to have fun with the rabbits that is so excited with unnatural scenery without telling the members of Eientei
Komachi Onoduka
Species: Shinigami Ability: Manipulating distance
Komachi Onodzuka
Species: Shinigami Ability: Manipulating distance
Sokrates
Dragon
Mystia
Species: Night Sparrow Abilities: Driving people insane by singing
Suika
Species: Oni Location: Some hidden country occupied by oni (currently she's living somewhere in Gensokyo) Ability: Manipulating density and sparseness Species: oni Ability: Manipulating density
Remilia
Remilia Scarlet Species: Vampire Location: Scarlet Devil Mansion Abilities: Manipulation of fate Master of the Scarlet Devil Mansion. She looks young, but she's actually a vampire who's over 500 years old. Weak against sunlight, she has to take a parasol if she wants to go out in the daytime. Her personality is somewhat childish, and she's got maids who are basically at her beck and call, so she can be as egotistical as she wants. She's immensely powerful, so she can really kick up a fuss. Faster than the eye can follow, strong enough to crush boulders, powerful enough to manipulate demons, she's so strong it's almost not fair, so she doesn't care much for subtle technique. She may be weak against sunlight, but she has a pretty strong constitution, so as long as some bit of her still remains, say, a little bat, she can regenerate any time. She's dreadful to have as an enemy, but she's not exactly the sort of person you'd want as a friend, either
Orin
Species: kasha Ability: Carrying away corpses
Suwako
Species: God Ability: Creating earthliness
Keine
Species: Were-hakutaku
Kyouko
Species: Yamabiko Ability: Reflecting sound
Eirin
Species: Lunarian Abilities: Making any drug. Natural Genius
Aki Shizuha
Species: Goddess of autumn leaves Abilities: Governing autumn leaves
Aki Minoriko
Species: Harvest Goddess Abilities: Governing abundant harvest
Sumireko
Species: High-school girl Ability: Capable of manipulating psychic powers
Patchouli
Species: Witch Residence: Scarlet Devil Mansion Ability: Handling magic (mainly elemental magic) Species: magician Ability: The ability to use magic
Yukari
Over a thousand years ago, Yukari met and became friends with a human girl named Yuyuko Saigyouji. Over time, Yuyuko was driven to suicide out of despair over her ability to control death. After Yuyuko died, her body was used to seal the Saigyou Ayakashi, a youkai tree which drained the lives of too many humans, by an unknown individual who hoped Yuyuko would never have to suffer and experience pain again. The seal was created as the boundary between life and death. Yukari continued to be friends with Yuyuko's ghost, although Yuyuko gradually forgot who she had been and why she had died[34] Yukari and Yuyuko were friends even while Yuyuko was alive more than a thousand years ago, and continued to be Yuyuko's friend after she became a ghost. Of note is that this friendship between Yuyuko and Yukari does not extend to Yukari's shikigami Ran, and Yuyuko does not mind others beating Ran up Species: Youkai Location: Unknown Ability: Manipulate boundaries Ability: Manipulating boundaries Species: youkai
Youmu Kompaku
Species: Half-human half-phantom Location: Hakugyokurou in the Netherworld Ability: Handling sword techniques Abilities: Handling sword techniques Abilities: Capable of handling sword techniques
Tupai
Dragon
Sanae
Species: Human Occupation: Wind Priestess Ability: Causing miracles Ability: Capable of causing miracles
Yatsuhashi
Species: Tsukumogami Ability: Capable of making sounds and performing on their own
Raiko
Species: Tsukumogami Ability: Capable of making anything follow a rhythm
Benben
Species: Tsukumogami Ability: Ability to produce and play sounds on their own Species: Tsukumogami Ability: Capable of making sounds and performing on their own
Seija
Species: Amanojaku Ability: Capable of turning over anything
Eternity
Species: Fairy Ability: Capable of scattering scales
Giant Toad
Dragon
Dragon God
Dragon (God)
Unnamed Evil Dragon
Dragon
Alice
Species: Magician Location: Moderate sized house in the Forest of Magic (has no specific name) Ability: Ability to handle magic Ability: Ability to use magic Species: magician Ability: ability to manipulate dolls
Kanda
Dragon
Mimi-chan
Dragon
Tsuchinoko
Dragon
Kaguya
Kaguya Houraisan Species: Lunarian Ability: Manipulating eternity and the instantaneous
Nitori
Species: Kappa Ability: Manipulating water
Characters
Species: Ghost Ability: Capable of manipulating death Species: Human Ability: Capable of manipulating electricity Species: Shikigami(worm) Ability: Capable of freezing anything Species: Royal family Ability: Capable of resonating with the divine sword, capable of drifting through the seas of time Species: Tsukumogami (terracotta doll) Ability: Capable of extreme brute force in spite of her appearance Species: Tsukumogami (Magatama) Ability: Capable of manipulating ebb and flow Ability: Capable of manipulating kidou[6] Species: Star god Ability: Capable of leading to demise Species: Snake god Ability: Capable of causing floods and so forth (in her past form) Species: Youkai Abilities: Capable of mastering onmyoudou
Doremy
Species: Baku Ability: Capable of eating and creating dreams
Characters
Species: Yakushi-nyorai (self-proclaimed) / Yaksha (actually) Abilities: Capable of manipulating water & handling medicine Species: Nobusuma Abilities: Capable of predicting the weather Species: Fallen angel Abilities: Capable of harvesting souls Species: Great Tengu (former human) Abilities: Capable of not taking vengeance if held in esteem Species: Kodama Abilities: Capable of sending off spring Species: Crow tengu Abilities: Capable of using spirit photography Species: Divine spirit (former human) Abilities: Capable of reading poems (calling forth death) Species: Archangel Ability: Capable of passing down revelations Species: Divine spirit Abilities: Capable of crafting magical songs
Houraisan Kaguya
Kaguya Houraisan Species: Lunarian Ability: Manipulating eternity and the instantaneous
Kaenbyou Rin
Species: kasha Ability: Carrying away corpses
Satori
Satori As a satori, Satori is capable of reading the heart and mind of any living creature, even vengeful spirits. This ability works only on those within her immediate presence,[1] and doesn't work at all on her sister, Koishi Her surname Komeiji (古明地, lit. "ancient-bright earth") is an actual Japanese surname, seen mainly in the Yamanashi prefecture. The kanji 地 in Komeiji is also used in the Japanese title of Subterranean Animism (東方地霊殿). Her given name Satori (さとり) is homophonous with the name of her species, satori (覚), but written in hiragana. "Satori" could also be interpreted as satori (悟り, lit. "understanding" or "enlightenment")
Seiga
Species: Wicked Hermit Ability: Passing through walls
Murasa
Species: Ship phantom Ability: Causing water-related accidents
Shou
Species: youkai Ability: Gathering treasures
Kogasa
Kogasa Tatara (多々良 小傘, Tatara Kogasa) is a karakasa obake whose sole purpose is to surprise people. However, she hasn't been very successful so far. She encounters the heroine on their way to catch up with the flying object on a mission to scare her, but it doesn't work. She was once a normal umbrella in the outside world; forgotten by her owner, and no one else claimed her because the colour was unpopular at the time. As time went on, the wind swept her away to Gensokyo and she became a youkai. According to her profile in Undefined Fantastic Object, she is currently reading up on classic ghost stories in order to improve her scaring technique
Mokou Fujiwara
Species: Human Abilities: Neither aging nor dying
Satono
Species: Human (?) Ability: Capable of drawing out people's mental energy by dancing behind them (Satono) Ability: Capable of drawing out people's vitality by dancing behind them (Mai)
Aunn
Species: Komainu Ability: Capable of locating Shintoism and Buddhism
Narumi
Species: Magician (Jizo) Ability: Capable of using magic (control of life)
Mayumi Joutougu
Species: Haniwa Ability: Capable of directly turning her loyalty into strength
Eiki
Species: Yama Ability: Establishing things as clear good and evil
Saki
Matriarch of the Keiga Family Saki Kurokoma Species: Kurokoma Ability: Capable of having unmatched leg strength
Mokou
Species: Human Abilities: Neither aging nor dying
Hecatia
Species: God Ability: Capable of having three bodies
Unnamed girl on DiPP jacket
Dragon
Kasen Ibara
A hermit living in the mountains, repeatedly training. She's said to appear frequently in the village and shrine and give them a nice scold. Having the ability to guide animals, even controling such fantastic beasts as dragons and the cryptid Dapeng
Rin
Species: kasha Ability: Carrying away corpses
Byakuren
Species: magician Ability: Using magic (specializing in magic that increases her physical abilities)
Mamizou
Her disguising abilities gain power on nights of the full moon. Since tanuki like to do things like disguising people to take on a bewildering look, they rarely do inflict direct damage. The meaning of 'disguising things' is something that resembles the fellow nue, and thus mutually, they do not appear to play the role of close-range combat youkai. Thus it is a possibility that Nue has called Mamizou over with the consideration that "since the opponent can hear ten people's conversations at the same time, one has no choice but to call over a suitable youkai for splitting into 10 + 1 = 11." Species: Bake-danuki Ability: Disguising things and herself
Chiyari
Species: Tenkajin Name: Chiyari Tenkajin Ability: Capable of manipulating blood & fire
Shion
Her full name is Shion Yorigami (依神 紫苑). Shion (紫苑) comes from harujion (春紫苑), the Japanese word for the Philadelphia fleabane. [2] The flower is nicknamed as Poverty Grass (貧乏草) in which gives an emphasis to her status as a poverty goddess. Philadelphia fleabane is closely related to daisy fleabane, called in Japanese as himejoon (姫女苑), is the flower that is likely what her sister Joon is named after, thus reflecting their relationship as siblings. Interestingly enough, both the Philadelphia Fleabane and Daisy Fleabane is considered as an Invasive Species in Japan and disregarded as weeds on its native land of North America, just as the Yorigami sisters have a reputation for being two of the most despicable inhabitants of Gensokyo. In addition to that, the birth order of Yorigami sisters mayhaps influenced by the flower they are named after, as Philadelphia Fleabane usually blooms first around April and May, while Daisy Fleabane tends to bloom a few months later. On its own, Shion is also the Japanese word for Tatarian Aster. Her family name Yorigami is composed of the kanji 依, which means "reliant" or "dependent", and 神, which means "god". The first kanji is also present in the term hyoui (憑依) meaning "possession", so it is possible that Yorigami could mean "possession god" Species: Poverty god Ability: Capable of making people unlucky, including herself
Kanako
Species: God Ability: Creating the heavenliness (Qian (乾))
Minamitsu
Species: Ship phantom Ability: Causing water-related accidents
Unnamed Dapeng
Dragon
Koutei
Dragon
Kume
Dragon
Mukou
Dragon
Houso
Dragon
Unnamed Okuri-inu
Dragon
Reisen Udongain Inaba
Species: Moon Rabbit Abilities: Manipulating insanity [sic] Ability: Manipulating insanity Species: Human Ability: Manipulating wavelengths
Reimu
Species: Human Location: Hakurei Shrine Ability: Flying in the air Ability: Mainly flying in the air
Futo Mononobe
Species: Human? (a taoist who self-identifies as a shikaisen) Ability: Manipulating feng shui
Manzairaku
Dragon
Suiki
Dragon
Moon Capital Gate Guards
Dragon
Sagume
Species: Lunarian Ability: Capable of inverting a situation by speaking about it
Nue
Nue Her full name is Nue Houjuu (封獣 ぬえ). Like Satori, her first name is also the name of her species, nue. Nue's family name, Houjuu (封獣), literally translates to "sealed beast". "封" might be in reference to Nue's imprisonment underground prior to the events of Undefined Fantastic Object Species: Nue Ability: Making her true form unknown Nue Houjuu Species: nue Ability: Making her true form unknown A strange and wondrous youkai that lives in Myouren Temple. The saint that Byakuren had been holding back had finally resurrected. When she heard about this, she decided to pay back what she owed Byakuren from last time (UFO) and called on an old youkai friend in order to increase the power of the youkai. Naturally, she kept this a secret from Byakuren. As a result, another youkai came to live at Myouren Temple. Thus, she only served to make Byakuren even busier
Hakurei Reimu
Species: Human Location: Hakurei Shrine Ability: Flying in the air Ability: Mainly flying in the air Ability: Mainly capable of flying in the sky
Yuyuko
Saigyouji Yuyuko Species: Ghost Location: Hakugyokurou in the Netherworld Ability: Manipulating death A cheerful ghost maiden who won't go to Heaven and lives in the Netherworld. She can't remember when she died, because she's been dead for a long time. The reason why she can't rest in peace is that she must have left her regret in the human world. She's so carefree that she often acts tricky. Because of this, the straightforward Youmu is always troubled by this princess. But to tell the truth, she loves this nation outside of Gensokyo from the bottom of her heart. She's not good at physical attacks before and after death. Like other ghosts, she's always floating. She moves smoothly like a curve. You'll find yourself being defeated all of a sudden since her attack is too mysterious Yuyuko Saigyouji
Okina
Species: Secret God Ability: Capable of creating doors on the back of anything
Kasen
A hermit living in the mountains, repeatedly training. She's said to appear frequently in the village and shrine and give them a nice scold. Having the ability to guide animals, even controling such fantastic beasts as dragons and the cryptid Dapeng
Tsukasa
Species: Kuda-gitsune Ability: Capable of slipping into places where one's soul is weak
Chimata
Species: God Ability: Capable of letting one relinquish ownership
Multi
Dragon
Yachie
Matriarch of the Kiketsu Family Yachie Kicchou Species: Jidiao Ability: Capable of making people lose the will to fight back
Mayumi
Species: Haniwa Ability: Capable of directly turning her loyalty into strength
Misumaru
Species: God Ability: Capable of making magatama
Hisami
Species: Yomotsu-shikome Name: Hisami Yomotsu Ability: Capable of never letting anything slip from her grasp
Unnamed dapeng
Dragon
Unnamed okuri-inu
Dragon
Unnamed bake-danuki
Dragon
Salt Merchant
Dragon
Gateguards of the Lunar Capital
Dragon
Anxious Moustached Villager
Dragon
Miko
Species: Saint Ability: Capable of listening to ten people's conversations at the same time
Futo
Species: Human? (a taoist who self-identifies as a shikaisen) Ability: Manipulating feng shui
The Fortune-teller
Dragon
Unnamed Umatsuki
Dragon
Biten
Species: Sarugami Name: Son Biten Ability: Capable of manipulating wild monkeys
Zanmu
Species: Human-oni Name: Zanmu Nippaku Ability: Capable of manipulating nothingness
Enoko
Species: Immortal yamainu Name: Enoko Mitsugashira Ability: Capable of manipulating traps
Kirisame Marisa
Species: Human Ability: Ability to use magic Ability: Capable of using magic
Izayoi Sakuya
ZUN's only hint in regards to this can be seen above in the section about Konohana-Sakuyahime Species: Human Location: Scarlet Devil Mansion Ability: Ability to manipulate time Abilities: Manipulating time Ability: Manipulating time There's a scarlet mansion on the edge of a lake in Gensokyo. She's a maid working there. She heard something was going on, so she just thought she'd go out and have a look; she didn't particularly think something dangerous was happening. This is also why nobody in the Scarlet Devil Mansion was particularly upset about the flower incident Ability: Capable of stopping time
Yuugi
Species: Oni Ability: The ability to wield unexplainable phenomena
Shinmyoumaru
Species: Inchling Ability: Using the Miracle Mallet
Kokoro
Species: Menreiki Ability: Ability to manipulate emotion
Merlin
Merlin Prismriver Species: Poltergeist Abilities: Performing maniac notes The second daughter of the Prismriver Sisters, who are always busy going to and fro to perform in concerts. Specializing in brass instruments, she uses sounds that can uplift the soul. She has absolutely no interest in the flower incident
Parsee
Species: Bridge Princess Ability: Manipulating jealousy
Tenshi
Species: Fallen Celestial
Iku
Species: Youkai (Oarfish)
Hina
Species: Misfortune god Power: Stockpiling misfortune
Sikieiki Yamaxanadu
Species: Yama Ability: Establishing things as clear good and evil
Saigyouji Yuyuko
Saigyouji Yuyuko Species: Ghost Location: Hakugyokurou in the Netherworld Ability: Manipulating death A cheerful ghost maiden who won't go to Heaven and lives in the Netherworld. She can't remember when she died, because she's been dead for a long time. The reason why she can't rest in peace is that she must have left her regret in the human world. She's so carefree that she often acts tricky. Because of this, the straightforward Youmu is always troubled by this princess. But to tell the truth, she loves this nation outside of Gensokyo from the bottom of her heart. She's not good at physical attacks before and after death. Like other ghosts, she's always floating. She moves smoothly like a curve. You'll find yourself being defeated all of a sudden since her attack is too mysterious Yuyuko Saigyouji
Urumi
Species: Ushi-oni Ability: Capable of changing the weight of everyday objects
Houjuu Nue
Nue Her full name is Nue Houjuu (封獣 ぬえ). Like Satori, her first name is also the name of her species, nue. Nue's family name, Houjuu (封獣), literally translates to "sealed beast". "封" might be in reference to Nue's imprisonment underground prior to the events of Undefined Fantastic Object Species: Nue Ability: Making her true form unknown Nue Houjuu Species: nue Ability: Making her true form unknown A strange and wondrous youkai that lives in Myouren Temple. The saint that Byakuren had been holding back had finally resurrected. When she heard about this, she decided to pay back what she owed Byakuren from last time (UFO) and called on an old youkai friend in order to increase the power of the youkai. Naturally, she kept this a secret from Byakuren. As a result, another youkai came to live at Myouren Temple. Thus, she only served to make Byakuren even busier
Kurokoma Saki
Matriarch of the Keiga Family Saki Kurokoma Species: Kurokoma Ability: Capable of having unmatched leg strength
Futatsuiwa Mamizou
Her disguising abilities gain power on nights of the full moon. Since tanuki like to do things like disguising people to take on a bewildering look, they rarely do inflict direct damage. The meaning of 'disguising things' is something that resembles the fellow nue, and thus mutually, they do not appear to play the role of close-range combat youkai. Thus it is a possibility that Nue has called Mamizou over with the consideration that "since the opponent can hear ten people's conversations at the same time, one has no choice but to call over a suitable youkai for splitting into 10 + 1 = 11." Species: Bake-danuki Ability: Disguising things and herself
Nippaku Zanmu
Species: Human-oni Name: Zanmu Nippaku Ability: Capable of manipulating nothingness
Eiki Shiki Yamaxanadu
Species: Yama Ability: Establishing things as clear good and evil
Kaenbyou Rin (Cat)
Species: kasha Ability: Carrying away corpses
Kagerou
Species: Wolf-woman Ability: Ability to transform into a wolf on the night of the full moon
Miko Toyosatomimi
Species: Saint Ability: Capable of listening to ten people's conversations at the same time
Tei Inaba
Species: Youkai Rabbit Abilities: Conferring good luck to humans Species: Youkai rabbit Ability: Conferring good luck to humans A youkai-powered rabbit who cared about her health and lived long. In Eientei, she's a leader of plenty of earthborn rabbits. This time, she went outside to have fun with the rabbits that is so excited with unnatural scenery without telling the members of Eientei
%E2%91%A8
Species: Fairy Ability: Ability to manipulate cold Ability: Ability to manipulate ice Ability: Capable of manipulating ice
Nishida Satono
Species: Human (?) Ability: Capable of drawing out people's mental energy by dancing behind them (Satono) Ability: Capable of drawing out people's vitality by dancing behind them (Mai)
Komeiji Satori
Satori As a satori, Satori is capable of reading the heart and mind of any living creature, even vengeful spirits. This ability works only on those within her immediate presence,[1] and doesn't work at all on her sister, Koishi Her surname Komeiji (古明地, lit. "ancient-bright earth") is an actual Japanese surname, seen mainly in the Yamanashi prefecture. The kanji 地 in Komeiji is also used in the Japanese title of Subterranean Animism (東方地霊殿). Her given name Satori (さとり) is homophonous with the name of her species, satori (覚), but written in hiragana. "Satori" could also be interpreted as satori (悟り, lit. "understanding" or "enlightenment")
Komano Aunn
Species: Komainu Ability: Capable of locating Shintoism and Buddhism
Jacketko
Dragon
Kochiya Sanae
Species: Human Occupation: Wind Priestess Ability: Causing miracles Ability: Capable of causing miracles
Remy
Remilia Scarlet Species: Vampire Location: Scarlet Devil Mansion Abilities: Manipulation of fate Master of the Scarlet Devil Mansion. She looks young, but she's actually a vampire who's over 500 years old. Weak against sunlight, she has to take a parasol if she wants to go out in the daytime. Her personality is somewhat childish, and she's got maids who are basically at her beck and call, so she can be as egotistical as she wants. She's immensely powerful, so she can really kick up a fuss. Faster than the eye can follow, strong enough to crush boulders, powerful enough to manipulate demons, she's so strong it's almost not fair, so she doesn't care much for subtle technique. She may be weak against sunlight, but she has a pretty strong constitution, so as long as some bit of her still remains, say, a little bat, she can regenerate any time. She's dreadful to have as an enemy, but she's not exactly the sort of person you'd want as a friend, either
Yuka Kazami
Kazami Yuuka Species: Youkai Ability: Manipulating flowers
Wakasagi
Species: Mermaid Ability: Ability to grow in strength when underwater
Yoshika
Species: Jiang shi Ability: Eating anything (humans bitten by her turn into a jiang shi temporarily) Species: Jiang shi. Ability: The ability to eat anything. (Humans bitten by her temporarily become jiang shi as well.)
Shikieiki
Species: Yama Ability: Establishing things as clear good and evil
Lunasa
Lunasa Prismriver Species: Poltergeist Abilities: Performing melancholic notes The oldest daughter of the Prismriver Sisters, who are always busy going to and fro to perform in concerts. Specializing in stringed instruments, she uses sounds that depress the spirit. She has nothing to do whatsoever with the "flower incident"
PC-98 Reimu
Species: Human Location: Hakurei Shrine Ability: Flying in the air Ability: Mainly flying in the air Ability: Mainly capable of flying in the sky
Satori Komeji
Satori As a satori, Satori is capable of reading the heart and mind of any living creature, even vengeful spirits. This ability works only on those within her immediate presence,[1] and doesn't work at all on her sister, Koishi Her surname Komeiji (古明地, lit. "ancient-bright earth") is an actual Japanese surname, seen mainly in the Yamanashi prefecture. The kanji 地 in Komeiji is also used in the Japanese title of Subterranean Animism (東方地霊殿). Her given name Satori (さとり) is homophonous with the name of her species, satori (覚), but written in hiragana. "Satori" could also be interpreted as satori (悟り, lit. "understanding" or "enlightenment")
Keiki
The Sculptor God Crafted by Utter Isolation Keiki Haniyasushin Species: God Ability: Capable of creating idols
Yuuma
Species: Taotie Ability: Capable of absorbing anything
Damn this is so nice. How about getting a list of all species and their example characters?
processedChars() | apply(tryout(None) | grep("Species:") | op().split(":")[-1].replace("(?)", "").strip(".\n ").capitalize().all() | aS(set), 1) | ungroup() | ~grep("Characters", col=0)\
| groupBy(1, True) | apply(joinSt() | unique(), 1) | deref() | ~sortF(len, 1) | deref() | display(None)
Human ['Sakuya Izayoi', 'Marisa Kirisame', 'Reimu Hakurei', 'Reisen Udongein Inaba', 'Fujiwara no Mokou', 'Sakuya', 'Satono Nishida', 'Sanae Kochiya', 'Mai Teireida', 'Reimu', 'Marisa', 'Sanae', 'Mokou Fujiwara', 'Satono', 'Mokou', 'Reisen Udongain Inaba', 'Hakurei Reimu', 'Kirisame Marisa', 'Izayoi Sakuya', 'Nishida Satono', 'Kochiya Sanae', 'PC-98 Reimu'] God ['Kutaka Niwatari', 'Misumaru Tamatsukuri', 'Kanako Yasaka', 'Chimata Tenkyuu', 'Keiki Haniyasushin', 'Suwako Moriya', 'Hecatia Lapislazuli', 'Suwako', 'Hecatia', 'Kanako', 'Chimata', 'Misumaru', 'Keiki'] Lunarian ['Eirin Yagokoro', 'Kaguya Houraisan', 'Sagume Kishin', 'Eirin', 'Kaguya', 'Houraisan Kaguya', 'Sagume'] Youkai ['Yukari Yakumo', 'Shou Toramaru', 'Yuuka Kazami', 'Yuuka', 'Yukari', 'Shou', 'Yuka Kazami'] Magician ['Byakuren Hijiri', 'Patchouli Knowledge', 'Alice Margatroid', 'Patchouli', 'Alice', 'Byakuren'] Tsukumogami ['Raiko Horikawa', 'Benben Tsukumo', 'Yatsuhashi Tsukumo', 'Yatsuhashi', 'Raiko', 'Benben'] Fairy ['Cirno', 'Eternity Larva', 'Clownpiece', 'Eternity', '%E2%91%A8'] Kasha ['Rin Kaenbyou', 'Orin', 'Kaenbyou Rin', 'Rin', 'Kaenbyou Rin (Cat)'] Poltergeist ['Lyrica Prismriver', 'Merlin Prismriver', 'Lunasa Prismriver', 'Merlin', 'Lunasa'] Yama ['Shikieiki Yamaxanadu', 'Eiki', 'Sikieiki Yamaxanadu', 'Eiki Shiki Yamaxanadu', 'Shikieiki'] Ghost ['Yuyuko Saigyouji', 'Soga no Tojiko', 'Yuyuko', 'Saigyouji Yuyuko'] Moon rabbit ['Reisen Udongein Inaba', 'Ringo', 'Seiran', 'Reisen Udongain Inaba'] Oni ['Suika Ibuki', 'Yuugi Hoshiguma', 'Suika', 'Yuugi'] Bake-danuki ['Mamizou Futatsuiwa', 'Mamizou', 'Futatsuiwa Mamizou'] Fallen celestial ['Tenshi Hinanawi', 'Hinanawi Tenshi', 'Tenshi'] Half-human half-phantom ['Youmu Konpaku', 'Youmu', 'Youmu Kompaku'] Haniwa ['Mayumi Joutouguu', 'Mayumi Joutougu', 'Mayumi'] Harvest goddess ['Minoriko Aki', 'Minoriko', 'Aki Minoriko'] Human-oni ['Zanmu Nippaku', 'Zanmu', 'Nippaku Zanmu'] Human? (a taoist who self-identifies as a shikaisen) ['Mononobe no Futo', 'Futo Mononobe', 'Futo'] Komainu ['Aunn Komano', 'Aunn', 'Komano Aunn'] Kurokoma ['Saki Kurokoma', 'Saki', 'Kurokoma Saki'] Night sparrow ['Mystia Lorelei', 'Character Pages', 'Mystia'] Nue ['Nue Houjuu', 'Nue', 'Houjuu Nue'] Saint ['Toyosatomimi no Miko', 'Miko', 'Miko Toyosatomimi'] Shinigami ['Komachi Onozuka', 'Komachi Onoduka', 'Komachi Onodzuka'] Ship phantom ['Minamitsu Murasa', 'Murasa', 'Minamitsu'] Vampire ['Remilia Scarlet', 'Remilia', 'Remy'] Youkai rabbit ['Tewi Inaba', 'Tewi', 'Tei Inaba'] Amanojaku ['Seija Kijin', 'Seija'] Baku ['Doremy Sweet', 'Doremy'] Bridge princess ['Parsee Mizuhashi', 'Parsee'] Crow tengu ['Aya Shameimaru', 'Aya'] Goddess of autumn leaves ['Shizuha Aki', 'Aki Shizuha'] High-school girl ['Sumireko Usami', 'Sumireko'] Immortal yamainu ['Enoko Mitsugashira', 'Enoko'] Inchling ['Shinmyoumaru Sukuna', 'Shinmyoumaru'] Jiang shi ['Yoshika Miyako', 'Yoshika'] Jidiao ['Yachie Kicchou', 'Yachie'] Kappa ['Nitori Kawashiro', 'Nitori'] Kuda-gitsune ['Tsukasa Kudamaki', 'Tsukasa'] Magician (jizo) ['Narumi Yatadera', 'Narumi'] Menreiki ['Hata no Kokoro', 'Kokoro'] Mermaid ['Wakasagihime', 'Wakasagi'] Misfortune god ['Hina Kagiyama', 'Hina'] Poverty god ['Shion Yorigami', 'Shion'] Sarugami ['Son Biten', 'Biten'] Secret god ['Okina Matara', 'Okina'] Taotie ['Yuuma Toutetsu', 'Yuuma'] Tengu ['Aya Shameimaru', 'Aya'] Tenkajin ['Chiyari Tenkajin', 'Chiyari'] Tsuchigumo ['Yamame Kurodani', 'Yamame'] Ushi-oni ['Urumi Ushizaki', 'Urumi'] Were-hakutaku ['Keine Kamishirasawa', 'Keine'] Wicked hermit ['Seiga Kaku', 'Seiga'] Witch ['Patchouli Knowledge', 'Patchouli'] Wolf-woman ['Kagerou Imaizumi', 'Kagerou'] Yamabiko ['Kyouko Kasodani', 'Kyouko'] Yomotsu-shikome ['Hisami Yomotsu', 'Hisami'] Youkai (oarfish) ['Iku Nagae', 'Iku'] Divine spirit ['Junko'] Doll ['Medicine Melancholy'] Great tengu ['Megumu Iizunamaru'] Maneki-neko ['Mike Goutokuji'] Oomukade ['Momoyo Himemushi'] Pestilence god ['Joon Yorigami'] Rokurokubi ['Sekibanki'] Satori ['Koishi Komeiji'] Soul of a stillborn child ['Eika Ebisu'] Tsurube otoshi ['Kisume'] White wolf tengu ['Momiji Inubashiri'] Yamajorou ['Sannyo Komakusa'] Yamanba ['Nemuno Sakata'] Yamawaro ['Takane Yamashiro'] Youkai insect ['Wriggle Nightbug']
Relationship graph
charsS = chars() | cut(0) | aS(set)
f = op().replace("><", ">\n<").split("\n") | grep("<h2", sep=True).till() | filt(head(3) | contains("Relationship") | shape(0) | (op()>0))\
| apply(join("")) | filt(op().strip()) | apply(aS(bs4.BeautifulSoup) | aS(lambda x: [x.find_all("h3"), x.find_all("dt")]) | joinSt() | op().text.all())
relaGraph = load() | inSet(charsS, 2) | cut(3, 4) | applyMp(iden() + f | deref(), bs=10, prefetch=10) | apply(op().split("- Touhou Wiki")[0].strip(), 0) | apply(joinSt() | aS(set), 1) | ungroup() | ~grep("Minor", col=1) | apply(tuple) | unique() | deref()
relaGraph | shape()
(426, 2, 13)
relaGraph | iden() & permute(1, 0) | joinSt() | apply(tuple) | unique() | groupBy(0, True) | apply(joinSt(), 1) | deref() | ~sortF(len, 1)\
| apply(apply(html.escape) | join("\n") | aS(fmt.pre), 1) | apply(fmt.h, 0, level=3) | viz.Carousel(searchMode=2)
Yukari Yakumo
Rinnosuke Morichika Chen Patchouli Knowledge Sages of Gensokyo Residents of the Scarlet Devil Mansion Netherworld Residents Yuyuko Saigyouji Yuugi Hoshiguma The Oni Shikigami Suika Ibuki Reimu and Marisa Eiki Shiki, Yamaxanadu Kasen Ibaraki Ran Yakumo Alice Margatroid Youmu Konpaku Remilia Scarlet Okina Matara Eientei Residents Keine Kamishirasawa Yukari's crows Three Fairies of Light Reimu Hakurei User:Sefam/Reimu
Reimu Hakurei
The Hakurei God Byakuren Hijiri Aya Shameimaru Sanae Kochiya Kasen Ibaraki Unnamed kitsune & Unnamed kuda-gitsune Kosuzu Motoori Misumaru Tamatsukuri Marisa Kirisame Rinnosuke Morichika Genjii Ruukoto Yukari Yakumo Suika Ibuki Mima Three Fairies of Light Shinmyoumaru Sukuna Cirno Toyosatomimi no Miko Remilia Scarlet Zanmu Nippaku Keine Kamishirasawa Aunn Komano Clownpiece
Marisa Kirisame
Flandre Scarlet Reimu Hakurei Kirisame Family Byakuren Hijiri Mimi-chan Narumi Yatadera Rinnosuke Morichika Mima Patchouli Knowledge Residents of the Scarlet Devil Mansion Tsuchinoko Three Fairies of Light Alice Margatroid Satori Komeiji and Koishi Komeiji Nitori Kawashiro Sakuya Izayoi Kasen Ibaraki Seiga Kaku Aunn Komano Enoko Mitsugashira Sanae Kochiya User:Sefam/Reimu
Kasen Ibaraki
Reimu Hakurei Kanako Yasaka and Suwako Moriya Toyosatomimi no Miko Sumireko Usami Suika Ibuki and Yuugi Hoshiguma Mamizou Futatsuiwa Sanae Kochiya Seiga Kaku Kasen's Pets Okina Matara Marisa Kirisame Ibaraki-douji's Arm Sages of Gensokyo Yukari Yakumo Komachi Onozuka Tenshi Hinanawi Suika Ibuki Yuugi Hoshiguma User:Sefam/Reimu
Byakuren Hijiri
Residents of Myouren Temple Shou Toramaru Hata no Kokoro Ichirin Kumoi Minamitsu Murasa Myouren Hijiri Nue Houjuu & Mamizou Futatsuiwa Others Koishi Komeiji Toyosatomimi no Miko & Seiga Kaku Kyouko Kasodani Marisa Kirisame Reimu Hakurei Joon Yorigami Nue Houjuu User:Sefam/Reimu
User:Sefam/Reimu
Byakuren Hijiri Sanae Kochiya Suika Ibuki Kasen Ibaraki Aya Shameimaru Unnamed kitsune & Unnamed kuda-gitsune Rinnosuke Morichika; VIVIT Marisa Kirisame Mima Genjii Yukari Yakumo Ruukoto Three Fairies of Light
Suika Ibuki
Patchouli Knowledge Reimu Hakurei Yamame Kurodani, Parsee Mizuhashi, Satori Komeiji, Rin Kaenbyou, Utsuho Reiuji, and Koishi Komeiji Yuyuko Saigyouji Kasen Ibaraki Yuugi Hoshiguma Tenshi Hinanawi Miyoi Okunoda Yukari Yakumo Iku Nagae Zanmu Nippaku Parsee Mizuhashi User:Sefam/Reimu
Aya Shameimaru
Reimu Hakurei Mamizou Futatsuiwa Hatate Himekaidou Kosuzu Motoori Miyoi Okunoda Tenma Momiji Inubashiri Megumu Iizunamaru Remilia Scarlet Minoriko Aki User:Sefam/Reimu
Okina Matara
Flandre Scarlet Yuuma Toutetsu Kasen Ibaraki Satono Nishida and Mai Teireida Yukari Yakumo Sages of Gensokyo Zashiki-warashi Shinmyoumaru Sukuna Sumireko Usami Satono Nishida Mai Teireida
Mamizou Futatsuiwa
Residents of Myouren Temple Hata no Kokoro Aya Shameimaru Kasen Ibaraki Kosuzu Motoori Miyoi Okunoda Sumireko Usami Nue Houjuu Sannyo Komakusa Chiyari Tenkajin
Remilia Scarlet
Flandre Scarlet Reimu Hakurei Patchouli Knowledge Sakuya Izayoi Other servants Aya Shameimaru Tupai Hong Meiling Yukari Yakumo Residents of the Scarlet Devil Mansion
Yuyuko Saigyouji
Youmu Konpaku Saigyou Ayakashi (Youkai Tree in her Garden) Youki Konpaku Eiki Shiki Yukari Yakumo Lunasa, Lyrica, and Merlin Prismriver (Regular performers) Suika Ibuki Lyrica Prismriver Merlin Prismriver Lunasa Prismriver
Eirin Yagokoro
Kaguya Houraisan Medicine Melancholy Tewi Inaba Sakuya Izayoi Reisen Udongein Inaba Watatsuki no Toyohime & Watatsuki no Yorihime Lord Tsukuyomi Alice Margatroid Sagume Kishin
Sumireko Usami
Fujiwara no Mokou Shinmyoumaru Sukuna Doremy Sweet Mamizou Futatsuiwa Kasen Ibaraki Reimu Hakurei & Marisa Kirisame Okina Matara Rinnosuke Morichika Renko Usami
Toyosatomimi no Miko
Reimu Hakurei Taoist Allies Hata no Kokoro People from the Myouren Temple Mononobe no Futo Kasen Ibaraki Seiga Kaku Soga no Tojiko Saki Kurokoma
Zanmu Nippaku
Hisami Yomotsu Reimu Hakurei Son Biten Yuuma Toutetsu Saki Kurokoma Suika Ibuki Rin Kaenbyou Chiyari Tenkajin Enoko Mitsugashira
Alice Margatroid
Dolls Mima Marisa Kirisame Eirin Yagokoro Three Fairies of Light Sakuya Izayoi Yukari Yakumo Medicine Melancholy
Cirno
Eternity Larva Reimu Hakurei Daiyousei Letty Whiterock Rumia, Wriggle Nightbug and Mystia Lorelei Giant Toad Three Fairies of Light Sakuya Izayoi
Fujiwara no Mokou
Kaguya Houraisan Sumireko Usami Iwakasa Other Residents of Eientei Reimu Hakurei, Marisa Kirisame, Sakuya Izayoi, Yukari Yakumo, Remilia Scarlet, Alice Margatroid, Yuyuko Saigyouji, and Youmu Konpaku Mononobe no Futo Keine Kamishirasawa Reisen Udongein Inaba
Raiko Horikawa
Prismriver Sisters Benben and Yatsuhashi Tsukumo Reimu Hakurei, Marisa Kirisame, and Sakuya Izayoi Benben Tsukumo Yatsuhashi Tsukumo Lyrica Prismriver Merlin Prismriver Lunasa Prismriver
Sakuya Izayoi
Residents of Eientei Marisa Kirisame Cirno Residents of the Scarlet Devil Mansion Alice Margatroid Three Fairies of Light Remilia Scarlet Eirin Yagokoro
Sanae Kochiya
Suwako Moriya & Kanako Yasaka Reimu Hakurei Marisa Kirisame Kasen Ibaraki Kanako Yasaka Suwako Moriya Son Biten User:Sefam/Reimu
Three Fairies of Light
Sakuya Izayoi Cirno Marisa Kirisame Reimu Hakurei Yukari Yakumo Alice Margatroid Clownpiece User:Sefam/Reimu
Reisen Udongein Inaba
Kaguya Houraisan Fujiwara no Mokou Tewi Inaba Lunar Capital Relations Eirin Yagokoro Seiran Sagume Kishin
Saki Kurokoma
Yuuma Toutetsu Toyosatomimi no Miko Yachie Kicchou and Keiki Haniyasushin Keiki Haniyasushin Zanmu Nippaku Enoko Mitsugashira Yachie Kicchou
Youmu Konpaku
Eiki Shiki, Yamaxanadu Youki Konpaku Others in general Yuyuko Saigyouji Residents of Eientei Yukari Yakumo Komachi Onozuka
Chiyari Tenkajin
Hisami Yomotsu Mamizou Futatsuiwa Yuuma Toutetsu Utsuho Reiuji Zanmu Nippaku Rin Kaenbyou
Eiki Shiki, Yamaxanadu
Kutaka Niwatari Hecatia Lapislazuli Yuyuko Saigyouji and Youmu Konpaku Komachi Onozuka Yukari Yakumo Youmu Konpaku
Komachi Onozuka
Eiki Shiki, Yamaxanadu Other Relationships Kasen Ibaraki Tenshi Hinanawi Kutaka Niwatari Youmu Konpaku
Megumu Iizunamaru
Hatate Himekaidou Aya Shameimaru Chimata Tenkyuu Tenma Tsukasa Kudamaki Momoyo Himemushi
Mononobe no Futo
Toyosatomimi no Miko Soga no Tojiko Reimu Hakurei, Marisa Kirisame, Sanae Kochiya & Youmu Konpaku Ichirin Kumoi Other Characters Fujiwara no Mokou
Rin Kaenbyou
Yoshika Miyako Satori Komeiji Utsuho Reiuji Chen Zanmu Nippaku Chiyari Tenkajin
Seiga Kaku
Yoshika Miyako Toyosatomimi no Miko Mononobe no Futo and Soga no Tojiko Kasen Ibaraki Marisa Kirisame Soga no Tojiko
Tenshi Hinanawi
Kasen Ibaraki Her Father, Lord Nai Suika Ibuki Iku Nagae Shion Yorigami Komachi Onozuka
Keiki Haniyasushin
Reimu Hakurei and Marisa Kirisame Mayumi Joutouguu Saki Kurokoma Yachie Kicchou and other animal spirits. Yachie Kicchou
Koishi Komeiji
Satori Komeiji Hata no Kokoro Byakuren Hijiri Rin Kaenbyou & Utsuho Reiuji Reimu Hakurei & Marisa Kirisame
Nitori Kawashiro
Humans Marisa Kirisame Kappa Sunny Milk, Luna Child and Star Sapphire Chimata Tenkyuu
Patchouli Knowledge
Residents of the Scarlet Devil Mansion Marisa Kirisame Yukari Yakumo Remilia Scarlet Suika Ibuki
Residents of the Scarlet Devil Mansion
Sakuya Izayoi Marisa Kirisame Yukari Yakumo Patchouli Knowledge Remilia Scarlet
Rinnosuke Morichika
Kagerou Imaizumi Marisa Kirisame Reimu Hakurei Yukari Yakumo Sumireko Usami
Shinmyoumaru Sukuna
Reimu Hakurei Seija Kijin Okina Matara Benben Tsukumo and Yatsuhashi Tsukumo Sumireko Usami
Suwako Moriya
Hisoutensoku Sanae Kochiya Mishaguji Utsuho Reiuji Kanako Yasaka
Yachie Kicchou
Yuuma Toutetsu Keiki Haniyasushin Saki Kurokoma Mayumi Joutouguu Son Biten
Yoshika Miyako
People in the Myouren Temple Rin Kaenbyou People in Senkai Seiga Kaku Kogasa Tatara
Yuuma Toutetsu
Yachie Kicchou Okina Matara Chiyari Tenkajin Saki Kurokoma Zanmu Nippaku
Chimata Tenkyuu
Megumu Iizunamaru Tsukasa Kudamaki Momoyo Himemushi Nitori Kawashiro
Clownpiece
Reimu Hakurei Hecatia Lapislazuli Junko Three Fairies of Light
Hata no Kokoro
Mamizou Futatsuiwa Koishi Komeiji Toyosatomimi no Miko Byakuren Hijiri
Hecatia Lapislazuli
Clownpiece Eiki Shiki Junko Eiki Shiki, Yamaxanadu
Junko
Houyi Clownpiece Hecatia Lapislazuli Chang'e
Kaguya Houraisan
Reisen Udongein Inaba Eirin Yagokoro Fujiwara no Mokou Tewi Inaba
Keine Kamishirasawa
Reimu Hakurei Fujiwara no Mokou Hieda no Akyuu Yukari Yakumo
Mima
Marisa Kirisame Reimu Hakurei Alice Margatroid User:Sefam/Reimu
Misumaru Tamatsukuri
Reimu Hakurei Hakurei God Momoyo Himemushi Tsukasa Kudamaki
Momiji Inubashiri
Aya Shameimaru and Hatate Himekaidou Kappa Tenma Aya Shameimaru
Momoyo Himemushi
Megumu Iizunamaru Tsukasa Kudamaki Misumaru Tamatsukuri Chimata Tenkyuu
Satori Komeiji
Koishi Komeiji Rin Kaenbyou & Utsuho Reiuji Rin Kaenbyou Parsee Mizuhashi
Tewi Inaba
Reisen Udongein Inaba Kaguya Houraisan Gensokyo's youkai rabbits Eirin Yagokoro
Tsukasa Kudamaki
Chimata Tenkyuu Misumaru Tamatsukuri Megumu Iizunamaru Momoyo Himemushi
Utsuho Reiuji
Kanako Yasaka Rin Kaenbyou Suwako Moriya Chiyari Tenkajin
Aunn Komano
Reimu Hakurei Marisa Kirisame Okina Matara (creator)
Benben Tsukumo
Raiko Horikawa Yatsuhashi Tsukumo Seija Kijin & Shinmyoumaru Sukuna
Enoko Mitsugashira
Saki Kurokoma Marisa Kirisame Zanmu Nippaku
Flandre Scarlet
Marisa Kirisame Remilia Scarlet Okina Matara
Iku Nagae
Suika Ibuki The Cast of Scarlet Weather Rhapsody Tenshi Hinanawi
Kanako Yasaka
Sanae Kochiya Suwako Moriya Utsuho Reiuji
Kappa
Nitori Kawashiro Momiji Inubashiri Takane Yamashiro
Kogasa Tatara
Myouren Temple Yoshika Miyako Hakurei Shrine & Moriya Shrine[1]
Kosuzu Motoori
Reimu Hakurei Mamizou Futatsuiwa Aya Shameimaru
Kyouko Kasodani
Mystia Lorelei Byakuren Hijiri User:Araceli/Character Pages
Lunasa Prismriver
Raiko Horikawa Sisters Yuyuko Saigyouji
Lyrica Prismriver
Raiko Horikawa Sisters Yuyuko Saigyouji
Medicine Melancholy
Eirin Yagokoro Alice Margatroid Humanity
Merlin Prismriver
Raiko Horikawa Sisters Yuyuko Saigyouji
Minoriko Aki
Shizuha Aki Aya Shameimaru People from the Human Village
Miyoi Okunoda
Mamizou Futatsuiwa Aya Shameimaru Suika Ibuki
Nue Houjuu
Mamizou Futatsuiwa Minamitsu Murasa & Ichirin Kumoi Byakuren Hijiri
Sages of Gensokyo
Yukari Yakumo Kasen Ibaraki Okina Matara
Sannyo Komakusa
Mamizou Futatsuiwa Tengu & Kappa Moriya Shrine
Sisters
Lyrica Prismriver Merlin Prismriver Lunasa Prismriver
Soga no Tojiko
Seiga Kaku Toyosatomimi no Miko Mononobe no Futo
Son Biten
Sanae Kochiya Yachie Kicchou Zanmu Nippaku
Tenma
Aya Shameimaru Megumu Iizunamaru Momiji Inubashiri
Yatsuhashi Tsukumo
Raiko Horikawa Seija Kijin & Shinmyoumaru Sukuna Benben Tsukumo
Yuugi Hoshiguma
Suika Ibuki Kasen Ibaraki Yukari Yakumo
Benben Tsukumo and Yatsuhashi Tsukumo
Seija Kijin Shinmyoumaru Sukuna
Chen
Yukari Yakumo Rin Kaenbyou
Eiki Shiki
Yuyuko Saigyouji Hecatia Lapislazuli
Genjii
Reimu Hakurei User:Sefam/Reimu
Hatate Himekaidou
Aya Shameimaru Megumu Iizunamaru
Hisami Yomotsu
Zanmu Nippaku Chiyari Tenkajin
Ichirin Kumoi
Byakuren Hijiri Mononobe no Futo
Joon Yorigami
Shion Yorigami Byakuren Hijiri
Kagerou Imaizumi
Rinnosuke Morichika Wakasagihime
Kutaka Niwatari
Eiki Shiki, Yamaxanadu Komachi Onozuka
Mai Teireida
Satono Nishida Okina Matara
Mayumi Joutouguu
Keiki Haniyasushin Yachie Kicchou
Minamitsu Murasa
Shou Toramaru, Ichirin Kumoi & Nazrin Byakuren Hijiri
Moriya Shrine
Takane Yamashiro Sannyo Komakusa
Parsee Mizuhashi
Suika Ibuki Satori Komeiji
Reimu Hakurei & Marisa Kirisame
Sumireko Usami Koishi Komeiji
Reimu and Marisa
Yukari Yakumo Yuuka Kazami
Residents of Eientei
Sakuya Izayoi Youmu Konpaku
Residents of Myouren Temple
Byakuren Hijiri Mamizou Futatsuiwa
Rin Kaenbyou & Utsuho Reiuji
Koishi Komeiji Satori Komeiji
Ruukoto
Reimu Hakurei User:Sefam/Reimu
Sagume Kishin
Reisen Udongein Inaba Eirin Yagokoro
Satono Nishida
Mai Teireida Okina Matara
Seija Kijin
Benben Tsukumo and Yatsuhashi Tsukumo Shinmyoumaru Sukuna
Seija Kijin & Shinmyoumaru Sukuna
Benben Tsukumo Yatsuhashi Tsukumo
Seiran
Reisen Udongein Inaba Ringo
Shion Yorigami
Joon Yorigami Tenshi Hinanawi
Shou Toramaru
Nazrin, Minamitsu Murasa, Ichirin Kumoi & Bishamonten Byakuren Hijiri
Takane Yamashiro
Moriya Shrine Kappa
Touhou Wiki:Guidelines/Standardization of Character Pages
Character Name #1 Character Name #2
Unnamed kitsune & Unnamed kuda-gitsune
Reimu Hakurei User:Sefam/Reimu
Youki Konpaku
Youmu Konpaku Yuyuko Saigyouji
Yuuka Kazami
Elly Reimu and Marisa
Aya Shameimaru and Hatate Himekaidou
Momiji Inubashiri
Benben and Yatsuhashi Tsukumo
Raiko Horikawa
Chang'e
Junko
Character Name #1
Touhou Wiki:Guidelines/Standardization of Character Pages
Character Name #2
Touhou Wiki:Guidelines/Standardization of Character Pages
Daiyousei
Cirno
Dolls
Alice Margatroid
Doremy Sweet
Sumireko Usami
Eientei Residents
Yukari Yakumo
Elly
Yuuka Kazami
Eternity Larva
Cirno
Gensokyo's youkai rabbits
Tewi Inaba
Giant Toad
Cirno
Hakurei God
Misumaru Tamatsukuri
Hakurei Shrine & Moriya Shrine[1]
Kogasa Tatara
Her Father, Lord Nai
Tenshi Hinanawi
Hieda no Akyuu
Keine Kamishirasawa
Hisoutensoku
Suwako Moriya
Hong Meiling
Remilia Scarlet
Houyi
Junko
Humanity
Medicine Melancholy
Humans
Nitori Kawashiro
Ibaraki-douji's Arm
Kasen Ibaraki
Iwakasa
Fujiwara no Mokou
Kanako Yasaka and Suwako Moriya
Kasen Ibaraki
Kasen's Pets
Kasen Ibaraki
Kirisame Family
Marisa Kirisame
Letty Whiterock
Cirno
Lord Tsukuyomi
Eirin Yagokoro
Lunar Capital Relations
Reisen Udongein Inaba
Lunasa, Lyrica, and Merlin Prismriver (Regular performers)
Yuyuko Saigyouji
Mimi-chan
Marisa Kirisame
Minamitsu Murasa & Ichirin Kumoi
Nue Houjuu
Mishaguji
Suwako Moriya
Mononobe no Futo and Soga no Tojiko
Seiga Kaku
Myouren Hijiri
Byakuren Hijiri
Myouren Temple
Kogasa Tatara
Mystia Lorelei
Kyouko Kasodani
Narumi Yatadera
Marisa Kirisame
Nazrin, Minamitsu Murasa, Ichirin Kumoi & Bishamonten
Shou Toramaru
Netherworld Residents
Yukari Yakumo
Nue Houjuu & Mamizou Futatsuiwa
Byakuren Hijiri
Okina Matara (creator)
Aunn Komano
Other Characters
Mononobe no Futo
Other Relationships
Komachi Onozuka
Other Residents of Eientei
Fujiwara no Mokou
Other servants
Remilia Scarlet
Others
Byakuren Hijiri
Others in general
Youmu Konpaku
People from the Human Village
Minoriko Aki
People from the Myouren Temple
Toyosatomimi no Miko
People in Senkai
Yoshika Miyako
People in the Myouren Temple
Yoshika Miyako
Prismriver Sisters
Raiko Horikawa
Ran Yakumo
Yukari Yakumo
Reimu Hakurei and Marisa Kirisame
Keiki Haniyasushin
Reimu Hakurei, Marisa Kirisame, Sakuya Izayoi, Yukari Yakumo, Remilia Scarlet, Alice Margatroid, Yuyuko Saigyouji, and Youmu Konpaku
Fujiwara no Mokou
Reimu Hakurei, Marisa Kirisame, Sanae Kochiya & Youmu Konpaku
Mononobe no Futo
Reimu Hakurei, Marisa Kirisame, and Sakuya Izayoi
Raiko Horikawa
Renko Usami
Sumireko Usami
Ringo
Seiran
Rinnosuke Morichika;
User:Sefam/Reimu
Rumia, Wriggle Nightbug and Mystia Lorelei
Cirno
Saigyou Ayakashi (Youkai Tree in her Garden)
Yuyuko Saigyouji
Satono Nishida and Mai Teireida
Okina Matara
Satori Komeiji and Koishi Komeiji
Marisa Kirisame
Shikigami
Yukari Yakumo
Shizuha Aki
Minoriko Aki
Shou Toramaru, Ichirin Kumoi & Nazrin
Minamitsu Murasa
Suika Ibuki and Yuugi Hoshiguma
Kasen Ibaraki
Sunny Milk, Luna Child and Star Sapphire
Nitori Kawashiro
Suwako Moriya & Kanako Yasaka
Sanae Kochiya
Taoist Allies
Toyosatomimi no Miko
Tengu & Kappa
Sannyo Komakusa
The Cast of Scarlet Weather Rhapsody
Iku Nagae
The Hakurei God
Reimu Hakurei
The Oni
Yukari Yakumo
Toyosatomimi no Miko & Seiga Kaku
Byakuren Hijiri
Tsuchinoko
Marisa Kirisame
Tupai
Remilia Scarlet
User:Araceli/Character Pages
Kyouko Kasodani
VIVIT
User:Sefam/Reimu
Wakasagihime
Kagerou Imaizumi
Watatsuki no Toyohime & Watatsuki no Yorihime
Eirin Yagokoro
Yachie Kicchou and Keiki Haniyasushin
Saki Kurokoma
Yachie Kicchou and other animal spirits.
Keiki Haniyasushin
Yamame Kurodani, Parsee Mizuhashi, Satori Komeiji, Rin Kaenbyou, Utsuho Reiuji, and Koishi Komeiji
Suika Ibuki
Yukari's crows
Yukari Yakumo
Yuyuko Saigyouji and Youmu Konpaku
Eiki Shiki, Yamaxanadu
Zashiki-warashi
Okina Matara
Very nice. And as expected, Yukari's the most well connected of them all. I guess that's it for now.