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
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.
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
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.
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())
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
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:
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");
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)
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.
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)
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
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
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
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
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
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
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
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
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
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
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
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
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
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
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
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
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
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
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
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
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
BGM: 見た事も無い悪夢の世界 BGM: A World of Nightmares Never Seen Before BGM: パンデモニックプラネット BGM: Pandemonic Planet
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
BGM: 見た事も無い悪夢の世界 BGM: A World of Nightmares Never Seen Before BGM: パンデモニックプラネット BGM: Pandemonic Planet
BGM: 見た事も無い悪夢の世界 BGM: A World of Nightmares Never Seen Before BGM: パンデモニックプラネット BGM: Pandemonic Planet
BGM: 見た事も無い悪夢の世界 BGM: A World of Nightmares Never Seen Before BGM: パンデモニックプラネット BGM: Pandemonic Planet
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
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
BGM: 明日ハレの日、ケの昨日 BGM: Tomorrow Will Be Special, Yesterday Was Not BGM: ネイティブフェイス BGM: Native Faith
BGM: 明日ハレの日、ケの昨日 BGM: Tomorrow Will Be Special, Yesterday Was Not BGM: ネイティブフェイス BGM: Native Faith
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
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
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
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.
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
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
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.
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.
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.
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]
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: U.N.オーエンは彼女なのか? BGM: U.N. Owen was Her?[3]
BGM: 魔法少女達の百年祭 BGM: The Centennial Festival for Magical Girls BGM: U.N.オーエンは彼女なのか? BGM: U.N. Owen was Her?[2]
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]
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
BGM: ルーズレイン BGM: Loose Rain BGM: メイガスナイト BGM: Magus Night
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
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
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
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
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
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.
BGM: Go behind the scene! ~ 閉領域のゲーム BGM: Go behind the scene! ~ the Game in the Closed Region BGM: ドットマトリクスバトラーズ BGM: Dot Matrix Battlers
BGM: Go behind the scene! ~ 閉領域のゲーム BGM: Go behind the scene! ~ the Game in the Closed Region BGM: ドットマトリクスバトラーズ BGM: Dot Matrix Battlers
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
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.
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
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
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
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
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.
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:
BGM: Go behind the scene! ~ 閉領域のゲーム BGM: Go behind the scene! ~ the Game in the Closed Region BGM: ドットマトリクスバトラーズ BGM: Dot Matrix Battlers
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.
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
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
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
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
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
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
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.
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
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.
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.
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.
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.
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
BGM: ラストリモート BGM: Last Remote BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl
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
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
BGM: ラストリモート BGM: Last Remote BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl
BGM: ラストリモート BGM: Last Remote BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl
BGM: ラストリモート BGM: Last Remote BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl
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
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
BGM: ラストリモート BGM: Last Remote BGM:BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl
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
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
BGM: ラストリモート BGM: Last Remote BGM: ハルトマンの妖怪少女 BGM: Hartmann's Youkai Girl
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
BGM: 夜空のユーフォーロマンス BGM: UFO Romance in the Night Sky BGM: 平安のエイリアン BGM: Heian Alien
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
BGM: 夜空のユーフォーロマンス BGM: UFO Romance in the Night Sky BGM: 平安のエイリアン BGM: Heian Alien
BGM: 夜空のユーフォーロマンス BGM: UFO Romance in the Night Sky BGM: 平安のエイリアン BGM: Heian Alien
BGM: 春の湊に BGM: At the Harbor of Spring
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
BGM: 夜空のユーフォーロマンス BGM: UFO Romance in the Night Sky BGM: 平安のエイリアン BGM: Heian Alien
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
BGM: 夜空のユーフォーロマンス BGM: UFO Romance in the Night Sky BGM: 平安のエイリアン BGM: Heian Alien
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
BGM: 夜空のユーフォーロマンス BGM: UFO Romance in the Night Sky BGM: 平安のエイリアン BGM: Heian Alien
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.
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
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
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
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.
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.
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.
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.
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.
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.
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
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
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.
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.
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.
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
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.
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.
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.
BGM: もうドアには入れない BGM: No More Going Through Doors BGM: 秘神マターラ ~ Hidden Star in All Seasons. BGM: Secret God Matara ~ Hidden Star in All Seasons.
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.
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
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
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
BGM: もうドアには入れない BGM: No More Going Through Doors BGM: 秘神マターラ ~ Hidden Star in All Seasons. BGM: Secret God Matara ~ Hidden Star in All Seasons.
BGM: もうドアには入れない BGM: No More Going Through Doors BGM: 秘神マターラ ~ Hidden Star in All Seasons. BGM: Secret God Matara ~ Hidden Star in All Seasons.
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
BGM: もうドアには入れない BGM: No More Going Through Doors BGM: 秘神マターラ ~ Hidden Star in All Seasons. BGM: Secret God Matara ~ Hidden Star in All Seasons.
BGM: 禁じざるをえない遊戯 BGM: The Inevitably Forbidden Game BGM: メイド幻想 ~ Icemilk Magic BGM: Illusion of a Maid ~ Icemilk Magic BGM: かわいい悪魔 ~ Innocence BGM: Cute Devil ~ Innocence
BGM: 禁じざるをえない遊戯 BGM: The Inevitably Forbidden Game BGM: メイド幻想 ~ Icemilk Magic BGM: Illusion of a Maid ~ Icemilk Magic BGM: かわいい悪魔 ~ Innocence BGM: Cute Devil ~ Innocence
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
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
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Person of Hourai BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke
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
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
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Person of Hourai BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Person of Hourai BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke
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
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Person of Hourai BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke
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
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
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
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
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
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
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
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
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
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
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
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
BGM: 輝かしき弱肉強食の掟 BGM: The Shining Law of the Strong Eating the Weak BGM: 聖徳太子のペガサス ~ Dark Pegasus BGM: Prince Shoutoku's Pegasus ~ Dark Pegasus
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
BGM: 妖怪裏参道 BGM: Rear Temple Path of Youkai BGM: 佐渡のニッ岩 BGM: Futatsuiwa From Sado
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
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
BGM: 妖怪裏参道 BGM: Rear Temple Path of Youkai BGM: 佐渡のニッ岩 BGM: Futatsuiwa From Sado
BGM: 妖怪裏参道 BGM: Rear Temple Path of Youkai BGM: 佐渡のニッ岩 BGM: Futatsuiwa From Sado
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
BGM: 妖怪裏参道 BGM: Rear Temple Path of Youkai BGM: 佐渡のニッ岩 BGM: Futatsuiwa From Sado
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
BGM: エキストララブ BGM: Extra Love BGM: 戦車むすめのみるゆめ BGM: The Tank Girl's Dream
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
BGM:不思議の国のアリス BGM: Alice in Wonderland BGM: the Grimoire of Alice BGM: the Grimoire of Alice
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
BGM: 不思議の国のアリス BGM: Alice in Wonderland BGM: the Grimoire of Alice BGM: the Grimoire of Alice
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
BGM: 不思議の国のアリス BGM: Alice in Wonderland BGM: the Grimoire of Alice BGM: the Grimoire of Alice
BGM: 不思議の国のアリス BGM: Alice in Wonderland BGM: the Grimoire of Alice BGM: the Grimoire of Alice
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
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
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
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
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
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
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
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
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
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
BGM: 幻想の地下大線路網 BGM: The Great Fantastic Underground Railway Network BGM: 龍王殺しのプリンセス BGM: The Princess Who Slays Dragon Kings
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
BGM: 幻想の地下大線路網 BGM: The Great Fantastic Underground Railway Network BGM: 龍王殺しのプリンセス BGM: The Princess Who Slays Dragon Kings
BGM: 幻想の地下大線路網 BGM: The Great Fantastic Underground Railway Network BGM: 龍王殺しのプリンセス BGM: The Princess Who Slays Dragon Kings
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
BGM: 幻想の地下大線路網 BGM: The Great Fantastic Underground Railway Network BGM: 龍王殺しのプリンセス BGM: The Princess Who Slays Dragon Kings
BGM: シルクロードアリス BGM: Silk Road Alice BGM: 魔女達の舞踏会 ~ Magus BGM: The Witches' Ball ~ Magus BGM: 二色蓮花蝶 ~ Ancients BGM: Dichromatic Lotus Butterfly ~ Ancients
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
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
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
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
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
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
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
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
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
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
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
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
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--
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--
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
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
BGM: 魔力の雷雲 BGM: Thunderclouds of Magical Power BGM: 始原のビート ~ Pristine Beat BGM: Primordial Beat ~ Pristine Beat
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
BGM: ルーズレイン BGM: Loose Rain BGM: メイガスナイト BGM: Magus Night
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
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
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
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
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
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
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
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
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
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
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
BGM: Eternal Phantasmagoria BGM: Eternal Phantasmagoria BGM: Dream Express~Red/White BGM: Dream Express ~ Red / White
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
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
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
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
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
BGM: 幻想郷ツアーへようこそ BGM: Welcome to the Gensokyo tour BGM: 御伽の国の鬼が島 ~ Missing Power BGM: 御伽の国の鬼が島 ~ Missing Power
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Person of Hourai BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke
BGM: エクステンドアッシュ ~ 蓬莱人 BGM: Extend Ash ~ Person of Hourai BGM: 月まで届け、不死の煙 BGM: Reach for the Moon, Immortal Smoke
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
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.
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
BGM: もうドアには入れない BGM: No More Going Through Doors
Those missing BGM translations would be nice to have...
BGM: 生命無キ涜神ノ亡都 BGM: Lost Capital of Lifeless Blasphemy BGM: インヤンシーサーペント BGM: Yin-Yang-Shi Serpent
BGM: 生命無キ涜神ノ亡都 BGM: Lost Capital of Lifeless Blasphemy BGM: インヤンシーサーペント BGM: Yin-Yang-Shi Serpent
BGM: 深海星雲 ~ Nebura Stream BGM: Deep-Sea Nebula ~ Nebula Stream BGM: 星の源流、草薙の剣竜 BGM: Source of the Starry River, Dragon of the Grass-Mowing Sword
BGM: 深海星雲 ~ Nebura Stream BGM: Deep-Sea Nebula ~ Nebula Stream BGM: 星の源流、草薙の剣竜 BGM: Source of the Starry River, Dragon of the Grass-Mowing Sword
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
BGM: アケローン彼岸旅行 BGM: Acheron Higan Voyage BGM: 堕ちた英雄の剣 ~ Legend of Sanada BGM: Sword of the Fallen Hero ~ Legend of Sanada
BGM: アケローン彼岸旅行 BGM: Acheron Higan Voyage BGM: 堕ちた英雄の剣 ~ Legend of Sanada BGM: Sword of the Fallen Hero ~ Legend of Sanada
BGM: アケローン彼岸旅行 BGM: Acheron Higan Voyage BGM: 堕ちた英雄の剣 ~ Legend of Sanada BGM: Sword of the Fallen Hero ~ Legend of Sanada
BGM: ご近所がロストワールド BGM: Neighborhood Lost World BGM: 神話世界の生き証人 ~ The Lost Comer BGM: Living Witness of the World of Mythology ~ The Lost Comer
BGM: ご近所がロストワールド BGM: Neighborhood Lost World BGM: 神話世界の生き証人 ~ The Lost Comer BGM: Living Witness of the World of Mythology ~ The Lost Comer
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
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
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
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
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.
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
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.
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.
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
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
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
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
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
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
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.
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
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
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
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
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
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
BGM: トリエステ号の足跡 BGM: Footprints of Trieste BGM: 旅人アイザックの胡蝶 BGM: The Butterfly of Isaac the Traveler
BGM: トリエステ号の足跡 BGM: Footprints of Trieste BGM: 旅人アイザックの胡蝶 BGM: The Butterfly of Isaac the Traveler
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
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
BGM: 過去の花 ~ Fairy of Flower BGM: Flower of Past Days ~ Fairy of Flower BGM: 華胥の夢 BGM: Dream of Huaxu
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
BGM: 過去の花 ~ Fairy of Flower BGM: Flower of Past Days ~ Fairy of Flower BGM: 華胥の夢 BGM: Dream of Huaxu
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
BGM: 灵空猝灭雨 BGM: Quenching Rain of Mystical Skies BGM: 富士大人之侘 ~我心匪石~ BGM: Elegance of Fuji-san ~My Heart is No Stone~
BGM: 灵空猝灭雨 BGM: Quenching Rain of Mystical Skies BGM: 富士大人之侘 ~我心匪石~ BGM: Elegance of Fuji-san ~My Heart is No Stone~
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~
BGM: 灵空猝灭雨 BGM: Quenching Rain of Mystical Skies BGM: 富士大人之侘 ~我心匪石~ BGM: Elegance of Fuji-san ~My Heart is No Stone~
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~
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~
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
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
BGM: ラストリモート BGM: Last Remote BGM: ガンダーラのユートピア BGM: Gandhara's Utopia
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
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
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
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
BGM: Down the Familiar Path of Dusk BGM: Lingering Light ~ Magician's Conviction
BGM: Along the Path of Darkness BGM: Void of Light ~ Magician's Requiem
BGM: Down the Familiar Path of Dusk BGM: Lingering Light ~ Magician's Conviction
BGM: Down the Familiar Path of Dusk BGM: Lingering Light ~ Magician's Conviction
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
BGM: Along the Path of Darkness BGM: Void of Light ~ Magician's Requiem
BGM: From Earth to Heaven BGM: Tenacity of the Youthful Divinity
BGM: Along the Path of Darkness BGM: Void of Light ~ Magician's Requiem
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
BGM: From Earth to Heaven BGM: Tenacity of the Youthful Divinity
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
BGM: From Earth to Heaven BGM: Tenacity of the Youthful Divinity
BGM: おぼれる者の心象風景 ~ Sinking Star BGM: A Drowning Man's Dreamscape ~ Sinking Star BGM: アーケインアウグル BGM: Arcane Augur
BGM: おぼれる者の心象風景 ~ Sinking Star BGM: A Drowning Man's Dreamscape ~ Sinking Star BGM: アーケインアウグル BGM: Arcane Augur
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
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
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
BGM: Nameless Discord BGM: Nameless Discord BGM: Summertime Rhapsody of a Dying World BGM: Summertime Rhapsody of a Dying World
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
BGM: Nameless Discord BGM: Nameless Discord BGM: Summertime Rhapsody of a Dying World BGM: Summertime Rhapsody of a Dying World
BGM: Nameless Discord BGM: Nameless Discord BGM: Summertime Rhapsody of a Dying World BGM: Summertime Rhapsody of a Dying World
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
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
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!
BGM: 湖水のビーストロード BGM: Lakewater Beast Road BGM: ファントムオブスカイセイバー BGM: Phantom of the Sky Sabre
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!
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!
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!
BGM: あゝ遥かなる聖域紀行 BGM: Ah, Distant Sanctuary Travelogue BGM: ディープヒストリア[1] BGM: Deep Historia
BGM: 湖水のビーストロード BGM: Lakewater Beast Road BGM: ファントムオブスカイセイバー BGM: Phantom of the Sky Sabre
BGM: あゝ遥かなる聖域紀行 BGM: Ah, Distant Sanctuary Travelogue BGM: ディープヒストリア [2] BGM: Deep Historia
BGM: あゝ遥かなる聖域紀行 BGM: Ah, Distant Sanctuary Travelogue BGM: ディープヒストリア[1] BGM: Deep Historia
BGM: あゝ遥かなる聖域紀行 BGM: Ah, Distant Sanctuary Travelogue BGM: ディープヒストリア[1] BGM: Deep Historia
BGM: 湖水のビーストロード BGM: Lakewater Beast Road BGM: ファントムオブスカイセイバー BGM: Phantom of the Sky Sabre
BGM: 湖水のビーストロード BGM: Lakewater Beast Road BGM: ファントムオブスカイセイバー BGM: Phantom of the Sky Sabre
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
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
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
BGM: 赤より紅い夢 開始BGM: おてんば恋娘 開始BGM: 少女綺想曲 開始BGM: 少女綺想曲 BGM: ほおずきみたいに紅い魂
BGM: 月時計 ~ ルナ・ダイアル 開始BGM: 明治十七年の上海アリス BGM: メイドと血の懐中時計 開始BGM: 恋色マスタースパーク BGM: ヴワル魔法図書館 開始BGM: ラクトガール BGM: ツェペシュの幼き末裔 開始BGM: 亡き王女の為のセプテット BGM: フラワリングナイト 開始BGM: 芥川龍之介の河童 開始BGM: U.N.オーエンは彼女なのか? BGM: ナイト・オブ・ナイツ BGM: 紅楼 ~ Eastern Dream...
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
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
BGM: 天国の大河を越えて BGM: Crossing the River of Heaven BGM: 大空を支配した竜神の宝石 ~ Quintessential Fragments BGM: Jewel of the Sky-Ruling Dragon God ~ Quintessential Fragments
BGM: 秋雪一夜落山林 BGM: Autumn Snow Falling in a Mountain Forest Overnight BGM: 隐世的超人 ~ Hidden Desire BGM: Hidden Superhuman ~ Hidden Desire
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
BGM: 秋雪一夜落山林 BGM: Autumn Snow Falling in a Mountain Forest Overnight BGM: 隐世的超人 ~ Hidden Desire BGM: Hidden Superhuman ~ Hidden Desire
BGM: 根の国のレイライン BGM: Underworld Ley Line BGM: 子午線を割る逆鱗 ~ Dragon's Dream BGM: Meridian-Splitting Reverse Scale ~ Dragon's Dream
BGM: 根の国のレイライン BGM: Underworld Ley Line BGM: 子午線を割る逆鱗 ~ Dragon's Dream BGM: Meridian-Splitting Reverse Scale ~ Dragon's Dream
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
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
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
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
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
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
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
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
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
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
BGM: 曼珠と沙華の神隠し ~ by any other name BGM: Spiriting Away of Manju and Saka ~ by any other name BGM: 藻女のマインドゲーム BGM: Mikuzume's Mind Game
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
BGM: 曼珠と沙華の神隠し ~ by any other name BGM: Spiriting Away of Manju and Saka ~ by any other name BGM: 藻女のマインドゲーム BGM: Mikuzume's Mind Game
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
BGM: 曼珠と沙華の神隠し ~ by any other name BGM: Spiriting Away of Manju and Saka ~ by any other name BGM: 藻女のマインドゲーム BGM: Mikuzume's Mind Game
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
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
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
BGM: 被遗忘的无名者 BGM: The Forgotten Nameless One BGM: 不灭之魂 ~ Everlasting Volition
BGM: 被遗忘的无名者 BGM: The Forgotten Nameless One BGM: 不灭之魂 ~ Everlasting Volition
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: 绽放在世界终焉
BGM: 被遗忘的无名者 BGM: The Forgotten Nameless One BGM: 不灭之魂 ~ Everlasting Volition
BGM: 幻影回廊 ~ Illusive Corridor BGM: Winding Corridor of Illusions ~ Illusive Corridor BGM: 英豪蜃气楼 BGM: Heroic Mirage
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
BGM: 幻影回廊 ~ Illusive Corridor BGM: Winding Corridor of Illusions ~ Illusive Corridor BGM: 英豪蜃气楼 BGM: Heroic Mirage
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
BGM: スカンディナヴィアグラキエール BGM: 破天荒な姫様 〜 Rude Rabbit BGM: 白銀の桃源郷 〜 Sweet Snow BGM: 情熱的な感じで東方風オリジナル曲 BGM: フォグレシアス迷夢賢者 BGM: ツインフロウス BGM: 真夜中の幻想道路 〜 Lit up way BGM: 機界伝承 〜 Sealed Prison BGM: 霊魂の宴と生命の祭 BGM: 幻想のイドラ 〜 Novum Organum BGM: 光と闇のコントラスト BGM: パニックグレイヴ
BGM: 深海星雲 ~ Nebura Stream BGM: Deep-Sea Nebula ~ Nebula Stream BGM: 星の源流、草薙の剣竜 BGM: Source of the Starry River, Dragon of the Grass-Mowing Sword
BGM: 生命無キ涜神ノ亡都 BGM: Lost Capital of Lifeless Blasphemy BGM: インヤンシーサーペント BGM: Yin-Yang-Shi Serpent
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
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
BGM: 来自仙界的新风 BGM: Fresh Air From the Hermit World BGM: 风中花,雪中月 BGM: Flowers in the Wind, Moon in the Snow
BGM: 世界の中心でアイを叫んだ神様 BGM: A God That Shouted 'Love' At the Heart of the World BGM: 彼女の千歳飴 BGM: Her Millennium Candy
BGM: 世界の中心でアイを叫んだ神様 BGM: A God That Shouted 'Love' At the Heart of the World BGM: 彼女の千歳飴 BGM: Her Millennium Candy
BGM: ディーヴァズディバイス BGM: Diva's Device BGM: 命を導く歌 〜 Prospect Mirai BGM: Life-Guiding Song ~ Prospect Mirai
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
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
BGM: 入眠 BGM: Falling Asleep BGM: 入眠 BGM: Falling Asleep BGM: 入眠 BGM: Falling Asleep BGM: 入眠 BGM: Falling Asleep BGM: 入眠 BGM: Falling Asleep
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: 绽放在世界终焉
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
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
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
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
BGM: 来自仙界的新风 BGM: Fresh Air From the Hermit World BGM: 风中花,雪中月 BGM: Flowers in the Wind, Moon in the Snow
BGM: おぼれる者の心象風景 ~ Sinking Star BGM: A Drowning Man's Dreamscape ~ Sinking Star BGM: アーケインアウグル BGM: Arcane Augur
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
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
BGM: おぼれる者の心象風景 ~ Sinking Star BGM: A Drowning Man's Dreamscape ~ Sinking Star BGM: アーケインアウグル BGM: Arcane Augur
BGM: 世界の中心でアイを叫んだ神様 BGM: A God That Shouted 'Love' At the Heart of the World BGM: 彼女の千歳飴 BGM: Her Millennium Candy
BGM: The Ground's Color is Yellow
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)
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
Antinomy_of_Common_Flowers - Marisa's_Scenario
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Urban_Legend_in_Limbo - Reimu's_Scenario Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
Concealed_the_Conclusion - Phantasm
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
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
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa'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 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
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
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
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
100th_Black_Market - Dialogue
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
Concealed_the_Conclusion - Part_Two
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
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
Sapphire_Panlogism - Hecatia's_Extra Sapphire_Panlogism - Reimu's_Extra Sapphire_Panlogism - Marisa's_Extra Sapphire_Panlogism - Shou's_Extra
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
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
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
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
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
Sapphire_Panlogism - Marisa's_Carrefour Sapphire_Panlogism - Hecatia's_Carrefour Sapphire_Panlogism - Reimu's_Carrefour
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
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
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
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
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
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
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
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
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
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
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
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya'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
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
Re.Phantasmagoria_of_Imagine_Breaker - Team_Lightning's_Scenario
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
Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B
Book_of_Star_Mythology - Reimu's_Extra Book_of_Star_Mythology - Marisa's_Extra Book_of_Star_Mythology - Sanae's_Extra
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
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
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
Mountain_of_Faith - Marisa's_Scenario
Mountain_of_Faith - Reimu's_Scenario
Lotus_Land_Story - Marisa's_Scenario
Lotus_Land_Story - Reimu's_Scenario Concealed_the_Conclusion - Scenario_D
Mystic_Square - Yuuka's_Extra Mystic_Square - Reimu's_Extra Mystic_Square - Mima's_Extra Mystic_Square - Marisa's_Extra
Record_Of_Ice_Fairy_War - Vinca's_Scenario
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
The_Shattered_Sky - Reimu's_Phantasm The_Shattered_Sky - Marisa's_Phantasm The_Shattered_Sky - Sanae's_Phantasm
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho'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 - Byakuren's_Scenario Urban_Legend_in_Limbo - Nitori's_Scenario Urban_Legend_in_Limbo - Miko's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario
Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Shuusou_Gyoku - Main_Scenario Concealed_the_Conclusion - Scenario_C
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
Sapphire_Panlogism - Hecatia's_Extra Sapphire_Panlogism - Reimu's_Extra Sapphire_Panlogism - Marisa's_Extra Sapphire_Panlogism - Shou's_Extra
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
Scarlet_Weather_Rhapsody - Reimu's_Scenario
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
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
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
Ultimate_Vitality_of_Imagination - Aya's_Extra Ultimate_Vitality_of_Imagination - Reimu's_Extra
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
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
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
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
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_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 - 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
Unfinished_Dream_of_All_Living_Ghost - Mamizou'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)
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
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
Antinomy_of_Common_Flowers - Marisa's_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 - Kasen's_Scenario Urban_Legend_in_Limbo - Reisen's_Scenario Urban_Legend_in_Limbo - Mamizou's_Scenario Urban_Legend_in_Limbo - Koishi's_Scenario
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu'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 - 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
Urban_Legend_in_Limbo - Reisen's_Scenario
Story_of_Eastern_Wonderland - Regular_Stages
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
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
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
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
Scarlet_Weather_Rhapsody - Reimu's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
100th_Black_Market - Dialogue
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
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
Perfect_Cherry_Blossom - Reimu's_Scenario
Perfect_Cherry_Blossom - Sakuya's_Scenario
Perfect_Cherry_Blossom - Marisa's_Scenario
Concealed_the_Conclusion - Part_Two
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
Urban_Legend_in_Limbo - Reisen's_Scenario
Urban_Legend_in_Limbo - Reisen's_Scenario
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
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
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
Samidare - Extra_Scenario
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
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
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
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
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
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
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
Samidare - Extra_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 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
Concealed_the_Conclusion - Scenario_B
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
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
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
Story_of_Eastern_Wonderland - Regular_Stages
Antinomy_of_Common_Flowers - Nitori's_Scenario
Little_Doll_Queen - Satono_and_Mai's_Scenario
Little_Doll_Queen - Satono_and_Mai'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
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Ran's_Scenario
Antinomy_of_Common_Flowers - Mamizou's_Scenario
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
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
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
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
Glory_of_Deep_Skies - Reimu's_Extra
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
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
Record_Of_Ice_Fairy_War - Vinca's_Scenario
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
Little_Doll_Queen - Medicine's_Scenario Little_Doll_Queen - Satono_and_Mai's_Scenario
Lotus_Land_Story - Marisa's_Extra Lotus_Land_Story - Reimu's_Extra
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa'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 - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_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 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
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
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
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
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Extra Riverbed_Soul_Saver - Futo_and_Miko's_Extra Riverbed_Soul_Saver - Reimu_and_Yukari's_Extra
Concealed_the_Conclusion - Scenario_B
Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario
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
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
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
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
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Concealed_the_Conclusion - Part_Two
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
Touhou_Hisoutensoku - Sanae's_Scenario Shuusou_Gyoku - Extra_Scenario
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Shuusou_Gyoku - Main_Scenario
Elegant_Impermanence_of_Sakura - Mokou_and_Keine's_Scenario
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Extra
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
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
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
Immaterial_and_Missing_Power - Suika's_Scenario
Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Mystic_Square - Reimu's_Scenario
Little_Doll_Queen - Satono_and_Mai's_Scenario
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
Fan-made_Virtual_Autography - Sumireko's_Extra Fan-made_Virtual_Autography - Reimu's_Extra Fan-made_Virtual_Autography - Marisa's_Extra
The_Shattered_Sky - Sanae's_Extra The_Shattered_Sky - Marisa's_Extra The_Shattered_Sky - Reimu's_Extra
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
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Concealed_the_Conclusion - Phantasm
Concealed_the_Conclusion - Phantasm
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
Shuusou_Gyoku - Main_Scenario
Antinomy_of_Common_Flowers - Nitori's_Scenario
The_Alternative_Age - Reimu's_Extra The_Alternative_Age - Marisa's_Extra
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
Unification_of_the_Artful_Rain - Marisa's_Scenario
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
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
Samidare - Extra_Scenario
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
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
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
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
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
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu'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)
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
Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine'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 Hopeless_Masquerade - Miko's_Scenario Hopeless_Masquerade - Nitori's_Scenario Hopeless_Masquerade - Reimu's_Scenario Hopeless_Masquerade - Mamizou's_Scenario
Story_of_Eastern_Wonderland - Regular_Stages
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
The_Alternative_Age - Marisa's_Scenario
The_Alternative_Age - Reimu's_Scenario
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu'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)
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
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Concealed_the_Conclusion - Scenario_C
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Concealed_the_Conclusion - Phantasm
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
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
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
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
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
Urban_Legend_in_Limbo - Demo_Scenario
Banshiryuu - VIVIT-r's_Scenario_(C67_version)
Concealed_the_Conclusion - Scenario_B
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
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
Story_of_Eastern_Wonderland - Extra_Stage
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi'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 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
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
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Touhou_Hisoutensoku - Cirno's_Scenario
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
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
Ultimate_Vitality_of_Imagination - Aya's_Endings
Shuusou_Gyoku - Main_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
Shuusou_Gyoku - Main_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Little_Doll_Queen - Medicine's_Scenario Little_Doll_Queen - Satono_and_Mai's_Scenario
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Shuusou_Gyoku - Main_Scenario
Legacy_of_Lunatic_Kingdom - Marisa's_Scenario
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
Undefined_Fantastic_Object - Sanae_A's_Scenario
Shuusou_Gyoku - Main_Scenario
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
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
Antinomy_of_Common_Flowers - Nitori's_Scenario
Imperishable_Night - Barrier_Team's_Scenario Imperishable_Night - Boundary_Team's_Scenario_1
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
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
The_Alternative_Age - Reimu's_Extra The_Alternative_Age - Marisa's_Extra
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
Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Extra Shining_Shooting_Star - Koishi's_Extra
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
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
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
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
Marine_Benefit - Sanae's_Extra Marine_Benefit - Marisa's_Extra
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
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
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu'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 - Sakuya's_Scenario
Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario
Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Extra Shining_Shooting_Star - Koishi's_Extra
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
The_Shattered_Sky - Sanae's_Heaven The_Shattered_Sky - Reimu's_Heaven The_Shattered_Sky - Marisa's_Heaven
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Marisa's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
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 - 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
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
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Concealed_the_Conclusion - Part_Two
Concealed_the_Conclusion - Part_Two
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
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
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
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
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
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
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Shuusou_Gyoku - Main_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
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
White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_1 White_Names_Spoiled_Past - Reimu_and_Tokubi's_Scenario_-_Part_2
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Extra Fan-made_Virtual_Autography - Reimu's_Extra Fan-made_Virtual_Autography - Marisa's_Extra
Fan-made_Virtual_Autography - Sumireko's_Extra Fan-made_Virtual_Autography - Reimu's_Extra Fan-made_Virtual_Autography - Marisa's_Extra
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Antinomy_of_Common_Flowers - Nitori's_Scenario
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
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
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
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
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
Story_of_Eastern_Wonderland - Regular_Stages Concealed_the_Conclusion - Scenario_D
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
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
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
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
Sapphire_Panlogism - Marisa's_Carrefour Sapphire_Panlogism - Hecatia's_Carrefour Sapphire_Panlogism - Reimu's_Carrefour
Chaos_of_Black_Loong - Reimu_and_Marisa's_Extra Chaos_of_Black_Loong - Sakuya_and_Meiling's_Extra
Ultimate_Vitality_of_Imagination - Aya's_Extra Ultimate_Vitality_of_Imagination - Reimu's_Extra
Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
Scarlet_Weather_Rhapsody - Remilia's_Scenario Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
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
Perfect_Cherry_Blossom - Reimu's_Scenario
Perfect_Cherry_Blossom - Sakuya's_Scenario
Perfect_Cherry_Blossom - Marisa's_Scenario
Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario Immaterial_and_Missing_Power - Yukari's_Scenario
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
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
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
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Shuusou_Gyoku - Main_Scenario
Lotus_Land_Story - Marisa's_Extra Lotus_Land_Story - Reimu's_Extra
Shuusou_Gyoku - Main_Scenario
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
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
Shuusou_Gyoku - Main_Scenario
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
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
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
Elegant_Impermanence_of_Sakura - Reimu_and_Yukari's_Scenario
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
Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Mamizou'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 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
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
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu'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
Immaterial_and_Missing_Power - Sakuya's_Scenario
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
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
Fantastic_Danmaku_Festival - Sanae's_Extra Fantastic_Danmaku_Festival - Reimu's_Extra Fantastic_Danmaku_Festival - Marisa's_Extra
Frantically_Forbidden_Fruit - Reisen's_Paradise_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)
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
Glory_of_Deep_Skies - Reimu's_Extra
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)
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
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
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
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
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
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
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
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
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
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
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Concealed_the_Conclusion - Part_Two
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
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
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
Mystical_Power_Plant - Reimu_and_Utsuho's_Extra
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
The_Shattered_Sky - Sanae's_Extra The_Shattered_Sky - Marisa's_Extra The_Shattered_Sky - Reimu's_Extra
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
The_Last_Comer - Marisa's_Extras The_Last_Comer - Reimu's_Extras
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
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
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
Great_Fairy_Wars - Extra Fairy_Wars - Extra
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
Riverbed_Soul_Saver - Futo_and_Miko's_Phantasm Riverbed_Soul_Saver - Reimu_and_Yukari's_Phantasm Riverbed_Soul_Saver - Marisa_and_Patchouli's_Phantasm
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)
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
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
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Touhou_Hisoutensoku - Cirno's_Scenario
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
Immaterial_and_Missing_Power - Alice's_Scenario
Immaterial_and_Missing_Power - Reimu's_Scenario Story_of_Eastern_Wonderland - Regular_Stages
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
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario
Immaterial_and_Missing_Power - Youmu's_Scenario
100th_Black_Market - Dialogue
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario
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
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
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
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
The_Alternative_Age - Marisa's_Scenario
Shuusou_Gyoku - Main_Scenario
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
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
The_Alternative_Age - Marisa's_Scenario
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
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
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Marisa's_Scenario
Sunken_Fossil_World - Flandre's_Scenario
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
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
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
The_Alternative_Age - Marisa's_Scenario
The_Alternative_Age - Reimu's_Scenario
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
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Shuusou_Gyoku - Main_Scenario The_Alternative_Age - Marisa's_Scenario
Samidare - Extra_Scenario
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
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
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
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
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Infinite_Blade_Pavilion - Youmu's_Extra Infinite_Blade_Pavilion - Reimu's_Extra
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
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
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
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
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
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
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
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
Re.Phantasmagoria_of_Imagine_Breaker - Team_Imagine's_Scenario
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario
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
Wonderful_Waking_World - Reimu's_Extra Wonderful_Waking_World - Marisa's_Extra Wonderful_Waking_World - Sanae's_Extra
Little_Doll_Queen - Satono_and_Mai's_Scenario
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Mountain_of_Faith - Marisa's_Extra Mountain_of_Faith - Reimu's_Extra
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra
The_Last_Comer - Marisa's_Extras The_Last_Comer - Reimu's_Extras
Urban_Legend_in_Limbo - Reisen's_Scenario
Scarlet_Weather_Rhapsody - Reisen's_Scenario
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
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
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
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
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
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
Urban_Legend_in_Limbo - Reisen's_Scenario
Urban_Legend_in_Limbo - Demo_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 - 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
Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
Ten_Desires - Reimu's_Scenario
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
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
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
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
Phantasmagoria_of_Flower_View - Reimu's_Scenario
Touhou_Hisoutensoku - Sanae's_Scenario
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
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
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
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
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
Unification_of_the_Artful_Rain - Marisa's_Scenario
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
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
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
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
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Unification_of_the_Artful_Rain - Marisa'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
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
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
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
Record_Of_Ice_Fairy_War - Vinca's_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 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
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
Banshiryuu - Hirano's_Scenario_(C67_version)
The_Alternative_Age - Reimu's_Scenario
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
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
Story_of_Eastern_Wonderland - Regular_Stages
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
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
Shuusou_Gyoku - Main_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 - 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)
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
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
Little_Doll_Queen - Medicine's_Scenario Little_Doll_Queen - Satono_and_Mai's_Scenario
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu'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
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
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
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
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
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
Little_Doll_Queen - Medicine's_Scenario Little_Doll_Queen - Satono_and_Mai's_Scenario
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
Ten_Desires - Marisa's_Extra Ten_Desires - Youmu's_Extra Ten_Desires - Sanae's_Extra Ten_Desires - 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
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
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
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_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 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
Concealed_the_Conclusion - Scenario_B
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
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
Record_Of_Ice_Fairy_War - Vinca's_Scenario
Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
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
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Undefined_Fantastic_Object - Sanae_A's_Scenario
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario
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
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa'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 Bubbling_Imaginary_Treasures - Reimu_and_Shinmyoumaru's_Scenario Bubbling_Imaginary_Treasures - Reimu_and_Yukari's_Scenario Bubbling_Imaginary_Treasures - Sanae_and_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
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
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
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
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
Subterranean_Animism - Reimu_and_Yukari's_Scenario
Scarlet_Weather_Rhapsody - Marisa's_Scenario
Unification_of_the_Artful_Rain - Marisa's_Scenario
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
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Lotus_Land_Story - Marisa's_Scenario
Embodiment_of_Scarlet_Devil - Marisa's_Scenario
Embodiment_of_Scarlet_Devil - Reimu's_Scenario
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
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
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
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
Concealed_the_Conclusion - Scenario_A
Embodiment_of_Scarlet_Devil - Marisa's_Scenario
Embodiment_of_Scarlet_Devil - Reimu's_Scenario
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
Story_of_Eastern_Wonderland - Regular_Stages
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
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
Antinomy_of_Common_Flowers - Reimu's_Scenario
Banshiryuu - Hirano's_C74_Extra Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_C74_Extra
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
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
Immaterial_and_Missing_Power - Suika's_Scenario
Shuusou_Gyoku - Extra_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
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
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
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
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
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario Concealed_the_Conclusion - Scenario_D
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
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
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
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
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_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 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
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Extra Riverbed_Soul_Saver - Futo_and_Miko's_Extra Riverbed_Soul_Saver - Reimu_and_Yukari's_Extra
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
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
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra
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
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
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
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
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
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
The_Alternative_Age - Marisa's_Scenario
Fantastic_Danmaku_Festival - Sanae's_Extra Fantastic_Danmaku_Festival - Reimu's_Extra Fantastic_Danmaku_Festival - Marisa's_Extra
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Wonderful_Waking_World - Reimu's_Extra Wonderful_Waking_World - Marisa's_Extra Wonderful_Waking_World - Sanae's_Extra
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
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
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
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
Book_of_Star_Mythology - Reimu's_Extra Book_of_Star_Mythology - Marisa's_Extra Book_of_Star_Mythology - Sanae's_Extra
Banshiryuu - Hirano's_Scenario_(C67_version)
100th_Black_Market - Dialogue
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
The_Shattered_Sky - Sanae's_Heaven The_Shattered_Sky - Reimu's_Heaven The_Shattered_Sky - Marisa's_Heaven
Concealed_the_Conclusion - Scenario_C
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho'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
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
Marine_Benefit - Sanae's_Extra Marine_Benefit - Marisa's_Extra
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
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
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
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
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Wonderful_Waking_World - Marisa's_Scenario Wonderful_Waking_World - Reimu's_Scenario Wonderful_Waking_World - Sanae's_Scenario
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario
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
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
Terminus_of_Unreal_Darkside - Marisa's_Scenario
Terminus_of_Unreal_Darkside - Reimu's_Scenario
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
Immaterial_and_Missing_Power - Yukari's_Scenario
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
Perfect_Cherry_Blossom - Reimu's_Scenario
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
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
Immaterial_and_Missing_Power - Sakuya's_Scenario
Immaterial_and_Missing_Power - Yuyuko's_Scenario
Immaterial_and_Missing_Power - Suika's_Scenario
Immaterial_and_Missing_Power - Alice's_Scenario
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Remilia's_Scenario
Immaterial_and_Missing_Power - Youmu's_Scenario
Immaterial_and_Missing_Power - Yukari's_Scenario
Immaterial_and_Missing_Power - Reimu's_Scenario Immaterial_and_Missing_Power - Patchouli's_Scenario
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu'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
Touhou_Hisoutensoku - Sanae's_Scenario
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Abyss_Soul_Lotus - Byakuren_and_Miko's_Extra Abyss_Soul_Lotus - Reimu_and_Yukari's_Extra Abyss_Soul_Lotus - Marisa_and_Okina'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
Legacy_of_Lunatic_Kingdom - Reimu's_Scenario
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
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
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
Unconnected_Marketeers - Sanae's_Extra Unconnected_Marketeers - Marisa's_Extra Unconnected_Marketeers - Reimu's_Extra Unconnected_Marketeers - Sakuya's_Extra
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
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
Scarlet_Weather_Rhapsody - Marisa's_Scenario
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
100th_Black_Market - Dialogue
Lotus_Land_Story - Marisa's_Extra Lotus_Land_Story - Reimu's_Extra
Antinomy_of_Common_Flowers - Nitori's_Scenario
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
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
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)
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
Concealed_the_Conclusion - Scenario_D
Touhou_Hisoutensoku - Sanae's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
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
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
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
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
Immaterial_and_Missing_Power - Alice's_Scenario
Immaterial_and_Missing_Power - Marisa's_Scenario
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
Immaterial_and_Missing_Power - Suika'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
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
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
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Reimu'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 - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
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
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Nitori'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 - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa'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
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario
Unconnected_Marketeers - Sanae's_Extra Unconnected_Marketeers - Marisa's_Extra Unconnected_Marketeers - Reimu's_Extra Unconnected_Marketeers - Sakuya's_Extra
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
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
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Touhou_Hisoutensoku - Cirno's_Scenario
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
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
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
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
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko'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)
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
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Fantastic_Danmaku_Festival - Patchouli's_Scenario
Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu'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)
Unification_of_the_Artful_Rain - Marisa's_Scenario
Story_of_Eastern_Wonderland - Extra_Stage
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
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
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
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
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
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
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
Little_Doll_Queen - Medicine's_Scenario Little_Doll_Queen - Satono_and_Mai's_Scenario
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Elegant_Impermanence_of_Sakura - Mokou_and_Keine'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 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
Shuusou_Gyoku - Extra_Scenario
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
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
Embodiment_of_Scarlet_Devil - Reimu's_Scenario
Embodiment_of_Scarlet_Devil - Marisa's_Scenario
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
Subterranean_Animism - Reimu_and_Yukari's_Scenario
Legacy_of_Lunatic_Kingdom - Marisa's_Scenario
Legacy_of_Lunatic_Kingdom - Marisa's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
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
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
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
Unfinished_Dream_of_All_Living_Ghost - Yachie's_Scenario Unfinished_Dream_of_All_Living_Ghost - Saki's_Scenario
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
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
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
Mountain_of_Faith - Marisa's_Extra Mountain_of_Faith - Reimu's_Extra
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
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
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
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)
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa'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 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
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Antinomy_of_Common_Flowers - Mamizou's_Scenario
Unification_of_the_Artful_Rain - Marisa's_Scenario
Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario
Embodiment_of_Scarlet_Devil - Reimu's_Extra
Embodiment_of_Scarlet_Devil - Marisa's_Extra
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
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
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
Infinite_Blade_Pavilion - Youmu's_Extra Infinite_Blade_Pavilion - Reimu's_Extra
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
Legacy_of_Lunatic_Kingdom - Marisa's_Scenario
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)
Antinomy_of_Common_Flowers - Nitori's_Scenario Urban_Legend_in_Limbo - Reisen's_Scenario
Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae'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)
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
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
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
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
The_Shattered_Sky - Reimu's_Phantasm The_Shattered_Sky - Marisa's_Phantasm The_Shattered_Sky - Sanae's_Phantasm
Immaterial_and_Missing_Power - Patchouli's_Scenario
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
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_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 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
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
Record_Of_Ice_Fairy_War - Vinca's_Scenario
Record_Of_Ice_Fairy_War - Vinca's_Scenario
Concealed_the_Conclusion - Scenario_B
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
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
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
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
Concealed_the_Conclusion - Scenario_A
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
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
Samidare - Extra_Scenario
Banshiryuu - VIVIT-r's_Scenario_(C67_version)
Concealed_the_Conclusion - Extra
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
The_Alternative_Age - Marisa's_Scenario
Concealed_the_Conclusion - Scenario_C
100th_Black_Market - Dialogue
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
The_Shattered_Sky - Reimu's_Scenario The_Shattered_Sky - Marisa's_Scenario The_Shattered_Sky - Sanae's_Scenario
Scarlet_Weather_Rhapsody - Suika's_Scenario Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
Subterranean_Animism - Reimu_and_Yukari's_Scenario
Chaos_of_Black_Loong - Reimu_and_Marisa's_Extra Chaos_of_Black_Loong - Sakuya_and_Meiling's_Extra
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
The_Alternative_Age - Marisa's_Scenario
Lotus_Land_Story - Reimu's_Scenario
Record_Of_Ice_Fairy_War - Vinca's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Story_of_Eastern_Wonderland - Regular_Stages
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_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 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
Great_Fairy_Wars - Route_A Fairy_Wars - Route_A
Riverbed_Soul_Saver - Futo_and_Miko's_Phantasm Riverbed_Soul_Saver - Reimu_and_Yukari's_Phantasm Riverbed_Soul_Saver - Marisa_and_Patchouli's_Phantasm
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
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
100th_Black_Market - Dialogue
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
Frantically_Forbidden_Fruit - Reisen's_Paradise_Scenario
Little_Doll_Queen - Medicine's_Scenario
Little_Doll_Queen - Satono_and_Mai's_Scenario
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
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
Samidare - Extra_Scenario
Mystic_Square - Yuuka's_Extra Mystic_Square - Reimu's_Extra Mystic_Square - Mima's_Extra Mystic_Square - Marisa's_Extra
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
Mystic_Square - Mima's_Scenario
100th_Black_Market - Dialogue Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
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
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
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
Sapphire_Panlogism - Hecatia's_Extra Sapphire_Panlogism - Reimu's_Extra Sapphire_Panlogism - Marisa's_Extra Sapphire_Panlogism - Shou's_Extra
Banshiryuu - Hirano's_Scenario_(C67_version)
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
Lotus_Land_Story - Marisa's_Extra Lotus_Land_Story - Reimu's_Extra
The_Last_Comer - Marisa's_Extras The_Last_Comer - Reimu's_Extras
Story_of_Eastern_Wonderland - Regular_Stages
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Touhou_Luna_Nights - Sakuya's_Extra
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
Touhou_Hisoutensoku - Sanae's_Scenario
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
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
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
Story_of_Eastern_Wonderland - Regular_Stages
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
Book_of_Star_Mythology - Reimu's_Extra Book_of_Star_Mythology - Marisa's_Extra Book_of_Star_Mythology - Sanae's_Extra
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario Concealed_the_Conclusion - Scenario_D
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
Shuusou_Gyoku - Main_Scenario Concealed_the_Conclusion - Scenario_C
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - 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 - Reisen's_Scenario
Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
Urban_Legend_in_Limbo - Reisen'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)
Sapphire_Panlogism - Hecatia's_Extra Sapphire_Panlogism - Reimu's_Extra Sapphire_Panlogism - Marisa's_Extra Sapphire_Panlogism - Shou's_Extra
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
Riverbed_Soul_Saver - Futo_and_Miko's_Phantasm Riverbed_Soul_Saver - Reimu_and_Yukari's_Phantasm Riverbed_Soul_Saver - Marisa_and_Patchouli's_Phantasm
Story_of_Eastern_Wonderland - Extra_Stage
Concealed_the_Conclusion - Scenario_B
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
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)
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario Urban_Legend_in_Limbo - Reisen's_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
Phantasmagoria_of_Flower_View - Reimu's_Scenario
Unification_of_the_Artful_Rain - Marisa's_Scenario
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
Record_Of_Ice_Fairy_War - Vinca's_Scenario
Shuusou_Gyoku - Main_Scenario
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
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
Sunken_Fossil_World - Flandre'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
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
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
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
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
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
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Shuusou_Gyoku - Extra_Scenario
Concealed_the_Conclusion - Scenario_B
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
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)
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
Youkai_Kori_Kassen - Ran's_Scenario
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
Shuusou_Gyoku - Main_Scenario
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Futo'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)
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)
Unification_of_the_Artful_Rain - Marisa's_Scenario
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
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Youkai_Kori_Kassen - Ran's_Scenario
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Touhou_Luna_Nights - Sakuya's_Scenario
Concealed_the_Conclusion - Part_Two
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Shuusou_Gyoku - Main_Scenario
Over_the_Developed_Eden - Shinmyoumaru's_Extra
Over_the_Developed_Eden - Sumireko's_Extra Over_the_Developed_Eden - Reimu's_Extra Over_the_Developed_Eden - Marisa's_Extra
Mystical_Power_Plant - Reimu_and_Utsuho's_Extra
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
Marine_Benefit - Sanae's_Extra Marine_Benefit - Marisa's_Extra
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
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)
Fan-made_Virtual_Autography - Sumireko's_Extra Fan-made_Virtual_Autography - Reimu's_Extra Fan-made_Virtual_Autography - Marisa's_Extra
Touhou_Luna_Nights - Sakuya's_Scenario
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Mountain_of_Faith - Marisa's_Extra Mountain_of_Faith - Reimu's_Extra
Antinomy_of_Common_Flowers - Reisen's_Scenario Urban_Legend_in_Limbo - Reisen's_Scenario
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
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
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
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
Subterranean_Animism - Reimu_and_Aya's_Scenario Subterranean_Animism - Reimu_and_Yukari's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
Youkai_Kori_Kassen - Ran's_Scenario
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
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)
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Record_Of_Ice_Fairy_War - Vinca's_Scenario
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
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
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
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Youkai_Kori_Kassen - Ran's_Scenario
Shuusou_Gyoku - Main_Scenario
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
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
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
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
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Shuusou_Gyoku - Main_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 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
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_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
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
Antinomy_of_Common_Flowers - Joon's_Scenario
Antinomy_of_Common_Flowers - Mamizou'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 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
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
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
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
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Alice's_Scenario
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
Lotus_Land_Story - Marisa's_Extra Lotus_Land_Story - Reimu's_Extra
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka'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 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
Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Alice's_Scenario Concealed_the_Conclusion - Scenario_A
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario
Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario
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
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
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
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
100th_Black_Market - Dialogue Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
Great_Fairy_Wars - Extra Fairy_Wars - Extra
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario
Concealed_the_Conclusion - Scenario_B
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)
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
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
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
Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario_1 Concealed_the_Conclusion - Scenario_B
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
Imperishable_Night - Magic_Team's_Scenario Imperishable_Night - Magic_Team's_Scenario_1
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
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
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
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
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
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
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
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
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
Concealed_the_Conclusion - Scenario_A
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Touhou_Hisoutensoku - Cirno's_Scenario Touhou_Hisoutensoku - Sanae's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
Mystic_Square - Reimu's_Extra Mystic_Square - Mima's_Extra Mystic_Square - Marisa's_Extra
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)
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
Abyss_Soul_Lotus - Byakuren_and_Miko's_Extra Abyss_Soul_Lotus - Reimu_and_Yukari's_Extra Abyss_Soul_Lotus - Marisa_and_Okina's_Extra
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
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
Sapphire_Panlogism - Marisa's_Carrefour Sapphire_Panlogism - Hecatia's_Carrefour Sapphire_Panlogism - Reimu's_Carrefour
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
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
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
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
Unification_of_the_Artful_Rain - Marisa's_Scenario
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Touhou_Hisoutensoku - Sanae's_Scenario Shuusou_Gyoku - Extra_Scenario
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
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
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
Little_Doll_Queen - Medicine's_Scenario
Little_Doll_Queen - Satono_and_Mai's_Scenario
Touhou_Hisoutensoku - Cirno's_Scenario
Immaterial_and_Missing_Power - Marisa's_Scenario Immaterial_and_Missing_Power - Sakuya's_Scenario
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
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
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
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
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Antinomy_of_Common_Flowers - Yukari's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Mamizou'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 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
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
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
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
Touhou_Hisoutensoku - Sanae's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
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
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
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
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario Touhou_Hisoutensoku - Cirno's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa'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)
Antinomy_of_Common_Flowers - Reisen's_Scenario Urban_Legend_in_Limbo - Reisen's_Scenario
Youkai_Kori_Kassen - Ran's_Scenario
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
Ultimate_Vitality_of_Imagination - Aya's_Endings
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
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
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
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
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
Unfinished_Dream_of_All_Living_Ghost - Seiran'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 - Saki's_Scenario Unfinished_Dream_of_All_Living_Ghost - Marisa's_Scenario
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Tenshi's_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 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
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
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
Concealed_the_Conclusion - Scenario_D
Story_of_Eastern_Wonderland - Regular_Stages
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
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
Banshiryuu - VIVIT-r's_Scenario_(C67_version)
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
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
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
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
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Extra
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
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
Scarlet_Weather_Rhapsody - Marisa's_Scenario Scarlet_Weather_Rhapsody - Reimu's_Scenario Scarlet_Weather_Rhapsody - Yuyuko's_Scenario Scarlet_Weather_Rhapsody - Sakuya'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
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya'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 - Alice's_Scenario Scarlet_Weather_Rhapsody - Sakuya's_Scenario
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Antinomy_of_Common_Flowers - Miko'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 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
Book_of_Star_Mythology - Reimu's_Extra Book_of_Star_Mythology - Marisa's_Extra Book_of_Star_Mythology - Sanae's_Extra
Urban_Legend_in_Limbo - Reisen's_Scenario
Urban_Legend_in_Limbo - Reisen's_Scenario
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
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
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
Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
Concealed_the_Conclusion - Part_Two
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
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
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
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
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
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
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Little_Doll_Queen - Satono_and_Mai's_Scenario
Shuusou_Gyoku - Main_Scenario
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
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
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
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
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
Glory_of_Deep_Skies - 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
Glory_of_Deep_Skies - Reimu's_Extra
Unification_of_the_Artful_Rain - Marisa's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Concealed_the_Conclusion - Scenario_C
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
Shuusou_Gyoku - Main_Scenario
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
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario
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
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra
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
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
100th_Black_Market - Dialogue
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
Ten_Desires - Marisa's_Extra Ten_Desires - Youmu's_Extra Ten_Desires - Sanae's_Extra Ten_Desires - 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
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Record_Of_Ice_Fairy_War - Vinca's_Scenario
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario
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
Infinite_Blade_Pavilion - Youmu's_Extra Infinite_Blade_Pavilion - Reimu's_Extra
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
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
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
The_Alternative_Age - Marisa's_Scenario
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
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
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
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 - Marisa_and_Patchouli's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa'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 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
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten'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
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Perfect_Cherry_Blossom - Marisa's_Extra Perfect_Cherry_Blossom - Sakuya's_Extra Perfect_Cherry_Blossom - Reimu's_Extra
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Shuusou_Gyoku - Main_Scenario
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
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
Immaterial_and_Missing_Power - Yuyuko's_Scenario Sunken_Fossil_World - Flandre's_Scenario
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
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
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
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Banshiryuu - VIVIT-r's_Scenario_(C67_version)
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
Record_Of_Ice_Fairy_War - Vinca's_Scenario
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
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
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Story_of_Eastern_Wonderland - Regular_Stages
Chaos_of_Black_Loong - Reimu_and_Marisa's_Extra Chaos_of_Black_Loong - Sakuya_and_Meiling's_Extra
Youkai_Kori_Kassen - Ran's_Scenario
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
Unconnected_Marketeers - Sanae's_Extra Unconnected_Marketeers - Marisa's_Extra Unconnected_Marketeers - Reimu's_Extra Unconnected_Marketeers - Sakuya's_Extra
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Shuusou_Gyoku - Main_Scenario
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
Shuusou_Gyoku - Main_Scenario
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
Concealed_the_Conclusion - Extra
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
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
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
Concealed_the_Conclusion - Scenario_D
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
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
Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Tenshi's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
Immaterial_and_Missing_Power - Sakuya's_Scenario Immaterial_and_Missing_Power - Remilia'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
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
Immaterial_and_Missing_Power - Yukari's_Scenario
Concealed_the_Conclusion - Part_Two
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
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario
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
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa'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
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
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
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
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
100th_Black_Market - Dialogue
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
Sapphire_Panlogism - Marisa's_Carrefour Sapphire_Panlogism - Hecatia's_Carrefour Sapphire_Panlogism - Reimu's_Carrefour
Elegant_Impermanence_of_Sakura - Marisa_and_Yuyuko's_Scenario
Scarlet_Weather_Rhapsody - Remilia's_Scenario
Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
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
Immaterial_and_Missing_Power - Yukari's_Scenario
Concealed_the_Conclusion - Extra
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
Sunken_Fossil_World - Yuuma's_Scenario
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario
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)
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
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
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Antinomy_of_Common_Flowers - Nitori's_Scenario
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
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
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Youkai_Kori_Kassen - Ran'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 - Miko's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario
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
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
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
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
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
Story_of_Eastern_Wonderland - Extra_Stage
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
Banshiryuu - Hirano's_Scenario_(C67_version) Banshiryuu - VIVIT-r's_Scenario_(C67_version)
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
Little_Doll_Queen - Medicine's_Scenario
Little_Doll_Queen - Satono_and_Mai's_Scenario
Unfinished_Dream_of_All_Living_Ghost - Seiran'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 - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
Scarlet_Weather_Rhapsody - Reisen's_Scenario Scarlet_Weather_Rhapsody - Remilia's_Scenario Scarlet_Weather_Rhapsody - Aya's_Scenario Scarlet_Weather_Rhapsody - Youmu's_Scenario
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
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
Marine_Benefit - Sanae's_Extra Marine_Benefit - Marisa's_Extra
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
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
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
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
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
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
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Mountain_of_Faith - Marisa's_Extra Mountain_of_Faith - Reimu's_Extra
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Embodiment_of_Scarlet_Devil - Reimu's_Scenario Embodiment_of_Scarlet_Devil - Marisa's_Scenario Concealed_the_Conclusion - Scenario_A
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
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Extra Riverbed_Soul_Saver - Futo_and_Miko's_Extra Riverbed_Soul_Saver - Reimu_and_Yukari's_Extra
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 - 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
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
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
Undefined_Fantastic_Object - Sanae_B's_Scenario Undefined_Fantastic_Object - Sanae_A's_Scenario
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
Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Byakuren's_Scenario
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
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
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
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa'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 - Marisa_and_Patchouli's_Scenario
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
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
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
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
Immaterial_and_Missing_Power - Suika's_Scenario
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
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
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
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
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
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Extra Shining_Shooting_Star - Koishi's_Extra
Immaterial_and_Missing_Power - Yukari's_Scenario
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
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
Story_of_Eastern_Wonderland - Regular_Stages
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
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
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
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Infinite_Blade_Pavilion - Youmu's_Extra Infinite_Blade_Pavilion - Reimu's_Extra
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
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
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
Immaterial_and_Missing_Power - Suika's_Scenario
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
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
Consciousness%27_Unity_of_Opposites - Reimu's_Scenario
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
Shuusou_Gyoku - Main_Scenario
Youkai_Kori_Kassen - Ran's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Story_of_Eastern_Wonderland - Regular_Stages
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario Unfinished_Dream_of_All_Living_Ghost - Ran'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
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_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 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
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Antinomy_of_Common_Flowers - Mamizou's_Scenario
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
Concealed_the_Conclusion - Scenario_C
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Antinomy_of_Common_Flowers - Marisa's_Scenario
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Mamizou'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
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
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
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
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Fantastic_Danmaku_Festival - Sanae's_Extra Fantastic_Danmaku_Festival - Reimu's_Extra Fantastic_Danmaku_Festival - Marisa's_Extra
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Extra Riverbed_Soul_Saver - Futo_and_Miko's_Extra Riverbed_Soul_Saver - Reimu_and_Yukari's_Extra
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
Antinomy_of_Common_Flowers - Joon'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 - Marisa_and_Patchouli's_Scenario
Legacy_of_Lunatic_Kingdom - Reisen's_Scenario Legacy_of_Lunatic_Kingdom - Reimu's_Scenario Legacy_of_Lunatic_Kingdom - Sanae's_Scenario
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
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
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
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
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
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
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
Little_Doll_Queen - Satono_and_Mai's_Scenario
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Scarlet_Weather_Rhapsody - Remilia's_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
Unfinished_Dream_of_All_Living_Ghost - Mamizou's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
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
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
Riverbed_Soul_Saver - Futo_and_Miko's_Phantasm Riverbed_Soul_Saver - Reimu_and_Yukari's_Phantasm Riverbed_Soul_Saver - Marisa_and_Patchouli's_Phantasm
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
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
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
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Youkai_Kori_Kassen - Ran's_Scenario
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
Fantastic_Danmaku_Festival - Sanae's_Extra Fantastic_Danmaku_Festival - Reimu's_Extra Fantastic_Danmaku_Festival - Marisa's_Extra
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
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
Great_Fairy_Wars - Route_A Great_Fairy_Wars - Route_C Great_Fairy_Wars - Route_B Fairy_Wars - Route_A
Youkai_Kori_Kassen - Ran's_Scenario
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
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
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
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
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)
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
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
Youkai_Kori_Kassen - Ran's_Scenario
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
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
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
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Sunken_Fossil_World - Yuuma's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
Terminus_of_Unreal_Darkside - Marisa's_Scenario
Terminus_of_Unreal_Darkside - Reimu's_Scenario
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
The_Last_Comer - Marisa's_Extras The_Last_Comer - Reimu's_Extras
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Marine_Benefit - Marisa's_Scenario Marine_Benefit - Reimu's_Scenario
Lotus_Land_Story - Marisa's_Extra Lotus_Land_Story - Reimu's_Extra
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
Mystic_Square - Reimu's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
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
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
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
Ultimate_Vitality_of_Imagination - Aya's_Extra Ultimate_Vitality_of_Imagination - Reimu's_Extra
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
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
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
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
Touhou_Hisoutensoku - Sanae's_Scenario
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
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
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_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 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
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
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
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
Touhou_Luna_Nights - Sakuya's_Scenario
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
Little_Doll_Queen - Medicine's_Scenario
Little_Doll_Queen - Satono_and_Mai's_Scenario
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa's_Scenario
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
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
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
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
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
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
Hopeless_Masquerade - Byakuren's_Scenario
Hopeless_Masquerade - Marisa's_Scenario Hopeless_Masquerade - Koishi's_Scenario Hopeless_Masquerade - Mamizou's_Scenario
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa'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 - 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)
Antinomy_of_Common_Flowers - Marisa's_Scenario Antinomy_of_Common_Flowers - Nitori's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Antinomy_of_Common_Flowers - Tenshi's_Scenario
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
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
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
Chaos_of_Black_Loong - Reimu_and_Marisa's_Extra Chaos_of_Black_Loong - Sakuya_and_Meiling's_Extra
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
Shuusou_Gyoku - Main_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 - 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
The_Alternative_Age - Reimu's_Extra The_Alternative_Age - Marisa's_Extra
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
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
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
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
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
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
Little_Doll_Queen - Medicine's_Scenario
Little_Doll_Queen - Satono_and_Mai's_Scenario
Abyss_Soul_Lotus - Byakuren_and_Miko's_Extra Abyss_Soul_Lotus - Reimu_and_Yukari's_Extra Abyss_Soul_Lotus - Marisa_and_Okina's_Extra
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Immaterial_and_Missing_Power - Patchouli's_Scenario Immaterial_and_Missing_Power - Youmu's_Scenario
The_Alternative_Age - Marisa's_Scenario
Concealed_the_Conclusion - Scenario_C
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
Glory_of_Deep_Skies - Marisa's_Scenario Glory_of_Deep_Skies - Reimu's_Scenario
Mystical_Power_Plant - Reimu_and_Utsuho's_Scenario
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
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Touhou_Luna_Nights - Sakuya's_Extra
Consciousness%27_Unity_of_Opposites - Reimu'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 - Sakuya's_Scenario Scarlet_Weather_Rhapsody - Yukari's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - 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)
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
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
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
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
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya's_Scenario
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
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
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
Mountain_of_Faith - Marisa's_Scenario Mountain_of_Faith - Reimu's_Scenario
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
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
The_Alternative_Age - Reimu's_Extra The_Alternative_Age - Marisa's_Extra
Perfect_Cherry_Blossom - Sakuya's_Scenario Perfect_Cherry_Blossom - Marisa's_Scenario Perfect_Cherry_Blossom - Reimu's_Scenario
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
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
The_Last_Comer - Reimu's_Scenario The_Last_Comer - Sakuya's_Scenario The_Last_Comer - Marisa's_Scenario
Unification_of_the_Artful_Rain - Marisa's_Scenario
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
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
Little_Doll_Queen - Medicine's_Scenario
Little_Doll_Queen - Satono_and_Mai's_Scenario
Riverbed_Soul_Saver - Marisa_and_Patchouli's_Scenario Riverbed_Soul_Saver - Futo_and_Miko's_Scenario
Infinite_Blade_Pavilion - Youmu's_Scenario Infinite_Blade_Pavilion - Reimu's_Scenario Infinite_Blade_Pavilion - Marisa's_Scenario
Unification_of_the_Artful_Rain - Marisa's_Scenario
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
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
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
Ten_Desires - Reimu's_Scenario Ten_Desires - Youmu's_Scenario Ten_Desires - Sanae's_Scenario Ten_Desires - Marisa'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
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
100th_Black_Market - Dialogue
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
Ultimate_Vitality_of_Imagination - Aya's_Extra Ultimate_Vitality_of_Imagination - Reimu's_Extra
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
Abyss_Soul_Lotus - Reimu_and_Yukari's_Scenario Abyss_Soul_Lotus - Byakuren_and_Miko's_Scenario
Terminus_of_Unreal_Darkside - Reimu's_Scenario Terminus_of_Unreal_Darkside - Marisa's_Scenario
Sapphire_Panlogism - Reimu's_Scenario Sapphire_Panlogism - Shou's_Scenario Sapphire_Panlogism - Hecatia's_Scenario Sapphire_Panlogism - Marisa's_Scenario
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
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Chaos_of_Black_Loong - Satori_and_Koishi's_Scenario
Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
Lotus_Land_Story - Marisa's_Scenario Lotus_Land_Story - Reimu's_Scenario
Sunken_Fossil_World - Yuuma's_Scenario
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
Youkai_Kori_Kassen - Ran's_Scenario
Concealed_the_Conclusion - Part_Two
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
Record_Of_Ice_Fairy_War - Vinca's_Scenario
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
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
Scarlet_Weather_Rhapsody - Suika's_Scenario Phantasmagoria_of_Flower_View - Marisa's_Scenario Phantasmagoria_of_Flower_View - Reimu's_Scenario
Shining_Shooting_Star - Reimu_and_Shinmyoumaru's_Extra Shining_Shooting_Star - Koishi's_Extra
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Ultimate_Vitality_of_Imagination - Reimu's_Scenario Ultimate_Vitality_of_Imagination - Aya'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 - Sakuya's_Scenario
Unconnected_Marketeers - Sanae's_Scenario Unconnected_Marketeers - Reimu's_Scenario Unconnected_Marketeers - Sakuya's_Scenario Unconnected_Marketeers - Marisa's_Scenario
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu'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 - Reimu's_Scenario Unfinished_Dream_of_All_Living_Ghost - Biten's_Scenario Unfinished_Dream_of_All_Living_Ghost - Seiran's_Scenario
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
Elegant_Impermanence_of_Sakura - Mokou_and_Keine'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
Shuusou_Gyoku - Extra_Scenario
Immaterial_and_Missing_Power - Alice's_Scenario Immaterial_and_Missing_Power - Suika's_Scenario Immaterial_and_Missing_Power - Yuyuko's_Scenario
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
Shuusou_Gyoku - Main_Scenario
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
Mystic_Square - Reimu's_Scenario Mystic_Square - Mima's_Scenario Mystic_Square - Marisa's_Scenario Mystic_Square - Yuuka's_Scenario
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
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
The_Alternative_Age - Marisa's_Scenario The_Alternative_Age - Reimu's_Scenario
Fan-made_Virtual_Autography - Sumireko's_Scenario Fan-made_Virtual_Autography - Reimu's_Scenario Fan-made_Virtual_Autography - Marisa's_Scenario
Blue_Devil_in_the_Belvedere - Reimu's_Scenario
Fantastic_Danmaku_Festival - Patchouli's_Scenario Fantastic_Danmaku_Festival - Sanae's_Scenario Fantastic_Danmaku_Festival - Marisa's_Scenario Fantastic_Danmaku_Festival - Reimu's_Scenario
Banshiryuu - Hirano's_C74_Extra Banshiryuu - VIVIT-r's_C74_Extra
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
Unconnected_Marketeers - Sanae's_Extra Unconnected_Marketeers - Marisa's_Extra Unconnected_Marketeers - Reimu's_Extra Unconnected_Marketeers - Sakuya's_Extra
Antinomy_of_Common_Flowers - Miko's_Scenario
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario
Subterranean_Animism - Reimu_and_Aya's_Extra
Antinomy_of_Common_Flowers - Reimu's_Scenario
Antinomy_of_Common_Flowers - Joon's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario
Antinomy_of_Common_Flowers - Reisen's_Scenario
Antinomy_of_Common_Flowers - Tenshi's_Scenario
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 - Joon's_Scenario Antinomy_of_Common_Flowers - Tenshi's_Scenario
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
Antinomy_of_Common_Flowers - Futo's_Scenario Antinomy_of_Common_Flowers - Reimu's_Scenario
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
Antinomy_of_Common_Flowers - Joon's_Scenario
Antinomy_of_Common_Flowers - Reisen's_Scenario
Antinomy_of_Common_Flowers - Sumireko's_Scenario
Antinomy_of_Common_Flowers - Reisen's_Scenario
Antinomy_of_Common_Flowers - Tenshi's_Scenario
Antinomy_of_Common_Flowers - Joon'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
Antinomy_of_Common_Flowers - Joon's_Scenario
Antinomy_of_Common_Flowers - Tenshi's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Futo's_Scenario
The_Alternative_Age - Reimu's_Scenario
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
Antinomy_of_Common_Flowers - Futo'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 - Tenshi's_Scenario Antinomy_of_Common_Flowers - Reisen's_Scenario
Antinomy_of_Common_Flowers - Marisa's_Scenario
Antinomy_of_Common_Flowers - Yukari's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario Antinomy_of_Common_Flowers - Mamizou's_Scenario
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
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
Antinomy_of_Common_Flowers - Sumireko's_Scenario Antinomy_of_Common_Flowers - Miko's_Scenario
Urban_Legend_in_Limbo - Reimu's_Scenario
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario
Unfinished_Dream_of_All_Living_Ghost - Chiyari's_Scenario
Sunken_Fossil_World - Joon_and_Shion's_Scenario
Sunken_Fossil_World - Greedy_Challenge
Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
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
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
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
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Marisa's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Kanako's_Scenario Touhou_Gouyoku_Ibun - Kanako's_Scenario
Sunken_Fossil_World - Marisa's_Scenario
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
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
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
Antinomy_of_Common_Flowers - Reimu's_Scenario
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
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
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
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
Sunken_Fossil_World - Reimu's_Scenario Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Minamitsu's_Scenario Touhou_Gouyoku_Ibun - Reimu's_Scenario
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
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
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
Sunken_Fossil_World - Flandre's_Scenario Sunken_Fossil_World - Joon_and_Shion's_Scenario
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
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
Mystic_Square - Yuuka's_Extra
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
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)
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Urban_Legend_in_Limbo - Reisen'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
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
Talk:Embodiment_of_Scarlet_Devil - Reimu's_Scenario
Little_Doll_Queen - Medicine's_Scenario
Touhou_Luna_Nights - Sakuya's_Scenario
Touhou_Luna_Nights - Sakuya's_Extra
Touhou_Luna_Nights - Sakuya's_Scenario
Touhou_Luna_Nights - Sakuya's_Scenario
Touhou_Luna_Nights - Sakuya's_Extra
Touhou_Luna_Nights - Sakuya's_Scenario
Touhou_Luna_Nights - Sakuya's_Scenario
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)
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
Species: Tsukumogami Ability: Capable of making anything follow a rhythm
Species: Tsukumogami Ability: Capable of making sounds and performing on their own
Species: Amanojaku Ability: Capable of turning over anything
Species: Inchling Ability: Using the Miracle Mallet
Species: Wolf-woman Ability: Ability to transform into a wolf on the night of the full moon
Species: Fairy Ability: Ability to manipulate cold Ability: Ability to manipulate ice Ability: Capable of manipulating ice
Species: Mermaid Ability: Ability to grow in strength when underwater
Species: Rokurokubi Ability: Ability to make her head fly
Species: Human Ability: Ability to use magic Ability: Capable of using magic
Species: Tsukumogami Ability: Capable of making sounds and performing on their own
Species: Human Location: Hakurei Shrine Ability: Flying in the air Ability: Mainly flying in the air Ability: Mainly capable of flying in the sky
Species of Enemy
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
Species: High-school girl Ability: Capable of manipulating psychic powers
Species: magician Ability: Using magic (specializing in magic that increases her physical abilities)
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
Species: Moon Rabbit Abilities: Manipulating insanity [sic] Ability: Manipulating insanity Species: Human Ability: Manipulating wavelengths
Species: Saint Ability: Capable of listening to ten people's conversations at the same time
Species: Pestilence god Ability: Causing consumption of financial assets
Species: Human? (a taoist who self-identifies as a shikaisen) Ability: Manipulating feng shui
Species: Menreiki Ability: Ability to manipulate emotion
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
Species: Baku Ability: Capable of eating and creating dreams
Species: Kappa Ability: Manipulating water
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
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
Species: Fallen Celestial
Species: Human Abilities: Neither aging nor dying
Species: Crow Tengu Ability: Manipulating wind Species: tengu Species: Tengu Ability: Capable of manipulating wind
Species: Witch Residence: Scarlet Devil Mansion Ability: Handling magic (mainly elemental magic) Species: magician Ability: The ability to use magic
Species: Half-human half-phantom Location: Hakugyokurou in the Netherworld Ability: Handling sword techniques Abilities: Handling sword techniques Abilities: Capable of handling sword techniques
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
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 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
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
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
Species: Crow Tengu Ability: Manipulating wind Species: tengu Species: Tengu Ability: Capable of manipulating wind
Species: Youkai (Oarfish)
Species: Wicked Hermit Ability: Passing through walls
Species: Lunarian Abilities: Making any drug. Natural Genius
Species: Shinigami Ability: Manipulating distance
Species: God Ability: Capable of healing throat illnesses
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)
Species: Night Sparrow Abilities: Driving people insane by singing
Species: Misfortune god Power: Stockpiling misfortune
Species: God Ability: Capable of making magatama
Species: Kuda-gitsune Ability: Capable of slipping into places where one's soul is weak
Species: Great Tengu Ability: Capable of manipulating the starry sky
Species: God Ability: Creating the heavenliness (Qian (乾))
Species: God Ability: Capable of letting one relinquish ownership
The Sculptor God Crafted by Utter Isolation Keiki Haniyasushin Species: God Ability: Capable of creating idols
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
Species: Youkai Insect Abilities: Manipulate insects
Species: Human-oni Name: Zanmu Nippaku Ability: Capable of manipulating nothingness
Species: Tsuchigumo Ability: Manipulating illness (mainly infectious disease)
Species: Were-hakutaku
Species: White Wolf Tengu Ability: Seeing a thousand ri ahead
Species: Yamawaro Ability: Capable of manipulating forest qi
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")
Species: Ghost Ability: Causing thunder
Species: kasha Ability: Carrying away corpses
Species: Komainu Ability: Capable of locating Shintoism and Buddhism
Species: Oni Ability: The ability to wield unexplainable phenomena
Species: Ushi-oni Ability: Capable of changing the weight of everyday objects
Dragon
Species: Moon rabbit Ability: Capable of becoming stronger by eating dango
Species: youkai Ability: Gathering treasures
Species: Yamabiko Ability: Reflecting sound
Kaguya Houraisan Species: Lunarian Ability: Manipulating eternity and the instantaneous
Species: Harvest Goddess Abilities: Governing abundant harvest
Species: Divine spirit Ability: Capable of purifying anything
Species: Bridge Princess Ability: Manipulating jealousy
Species: Doll Ability: Manipulating poison
Species: Immortal yamainu Name: Enoko Mitsugashira Ability: Capable of manipulating traps
Matriarch of the Keiga Family Saki Kurokoma Species: Kurokoma Ability: Capable of having unmatched leg strength
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 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
Matriarch of the Kiketsu Family Yachie Kicchou Species: Jidiao Ability: Capable of making people lose the will to fight back
Species: God Ability: Creating earthliness
Species: Tsurube otoshi Ability: Dropping will-o'-the-wisps
Species: Yamanba Ability: Capable of creating sanctuaries
Dragon (God)
Species: Magician (Jizo) Ability: Capable of using magic (control of life)
Species: Yomotsu-shikome Name: Hisami Yomotsu Ability: Capable of never letting anything slip from her grasp
Species: Maneki-neko Ability: Capable of beckoning in money or customers
Species: Goddess of autumn leaves Abilities: Governing autumn leaves
Species: Ship phantom Ability: Causing water-related accidents
Species: Fairy Ability: Capable of scattering scales
Dragon
Species: Human Occupation: Wind Priestess Ability: Causing miracles Ability: Capable of causing miracles
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.)
Species: Moon rabbit Ability: Capable of firing bullets from a different dimension
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
Species: God Ability: Capable of having three bodies
Species: Yamajorou Ability: Capable of controlling people's minds with tobacco smoke
Species: Haniwa Ability: Capable of directly turning her loyalty into strength
Species: Taotie Ability: Capable of absorbing anything
Species: Fairy Ability: Capable of driving people mad
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)
Kazami Yuuka Species: Youkai Ability: Manipulating flowers
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
Species: Lunarian Ability: Capable of inverting a situation by speaking about it
Species: Tenkajin Name: Chiyari Tenkajin Ability: Capable of manipulating blood & fire
Species: Night Sparrow Abilities: Driving people insane by singing
Dragon
Species: Oomukade Ability: Capable of eating dragons
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"
Species: Secret God Ability: Capable of creating doors on the back of anything
Species: Sarugami Name: Son Biten Ability: Capable of manipulating wild monkeys
Species: Soul of a stillborn child Ability: Capable of stacking stones well
Species: Harvest Goddess Abilities: Governing abundant harvest
Their Species (opt.)
Species: Yama Ability: Establishing things as clear good and evil
Kazami Yuuka Species: Youkai Ability: Manipulating flowers
Species: Human Location: Hakurei Shrine Ability: Flying in the air Ability: Mainly flying in the air Ability: Mainly capable of flying in the sky
Species: Human Ability: Ability to use magic Ability: Capable of using magic
Species: Half-human half-phantom Location: Hakugyokurou in the Netherworld Ability: Handling sword techniques Abilities: Handling sword techniques Abilities: Capable of handling sword techniques
Species: Tsuchigumo Ability: Manipulating illness (mainly infectious disease)
Species: Fallen Celestial
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
Species: Shinigami Ability: Manipulating distance
Species: Shinigami Ability: Manipulating distance
Dragon
Species: Night Sparrow Abilities: Driving people insane by singing
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 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
Species: kasha Ability: Carrying away corpses
Species: God Ability: Creating earthliness
Species: Were-hakutaku
Species: Yamabiko Ability: Reflecting sound
Species: Lunarian Abilities: Making any drug. Natural Genius
Species: Goddess of autumn leaves Abilities: Governing autumn leaves
Species: Harvest Goddess Abilities: Governing abundant harvest
Species: High-school girl Ability: Capable of manipulating psychic powers
Species: Witch Residence: Scarlet Devil Mansion Ability: Handling magic (mainly elemental magic) Species: magician Ability: The ability to use magic
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
Species: Half-human half-phantom Location: Hakugyokurou in the Netherworld Ability: Handling sword techniques Abilities: Handling sword techniques Abilities: Capable of handling sword techniques
Dragon
Species: Human Occupation: Wind Priestess Ability: Causing miracles Ability: Capable of causing miracles
Species: Tsukumogami Ability: Capable of making sounds and performing on their own
Species: Tsukumogami Ability: Capable of making anything follow a rhythm
Species: Tsukumogami Ability: Ability to produce and play sounds on their own Species: Tsukumogami Ability: Capable of making sounds and performing on their own
Species: Amanojaku Ability: Capable of turning over anything
Species: Fairy Ability: Capable of scattering scales
Dragon
Dragon (God)
Dragon
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
Dragon
Dragon
Dragon
Kaguya Houraisan Species: Lunarian Ability: Manipulating eternity and the instantaneous
Species: Kappa Ability: Manipulating water
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
Species: Baku Ability: Capable of eating and creating dreams
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
Kaguya Houraisan Species: Lunarian Ability: Manipulating eternity and the instantaneous
Species: kasha Ability: Carrying away corpses
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")
Species: Wicked Hermit Ability: Passing through walls
Species: Ship phantom Ability: Causing water-related accidents
Species: youkai Ability: Gathering treasures
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
Species: Human Abilities: Neither aging nor dying
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)
Species: Komainu Ability: Capable of locating Shintoism and Buddhism
Species: Magician (Jizo) Ability: Capable of using magic (control of life)
Species: Haniwa Ability: Capable of directly turning her loyalty into strength
Species: Yama Ability: Establishing things as clear good and evil
Matriarch of the Keiga Family Saki Kurokoma Species: Kurokoma Ability: Capable of having unmatched leg strength
Species: Human Abilities: Neither aging nor dying
Species: God Ability: Capable of having three bodies
Dragon
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
Species: kasha Ability: Carrying away corpses
Species: magician Ability: Using magic (specializing in magic that increases her physical abilities)
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
Species: Tenkajin Name: Chiyari Tenkajin Ability: Capable of manipulating blood & fire
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
Species: God Ability: Creating the heavenliness (Qian (乾))
Species: Ship phantom Ability: Causing water-related accidents
Dragon
Dragon
Dragon
Dragon
Dragon
Dragon
Species: Moon Rabbit Abilities: Manipulating insanity [sic] Ability: Manipulating insanity Species: Human Ability: Manipulating wavelengths
Species: Human Location: Hakurei Shrine Ability: Flying in the air Ability: Mainly flying in the air
Species: Human? (a taoist who self-identifies as a shikaisen) Ability: Manipulating feng shui
Dragon
Dragon
Dragon
Species: Lunarian Ability: Capable of inverting a situation by speaking about it
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
Species: Human Location: Hakurei Shrine Ability: Flying in the air Ability: Mainly flying in the air Ability: Mainly capable of flying in the sky
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
Species: Secret God Ability: Capable of creating doors on the back of anything
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
Species: Kuda-gitsune Ability: Capable of slipping into places where one's soul is weak
Species: God Ability: Capable of letting one relinquish ownership
Dragon
Matriarch of the Kiketsu Family Yachie Kicchou Species: Jidiao Ability: Capable of making people lose the will to fight back
Species: Haniwa Ability: Capable of directly turning her loyalty into strength
Species: God Ability: Capable of making magatama
Species: Yomotsu-shikome Name: Hisami Yomotsu Ability: Capable of never letting anything slip from her grasp
Dragon
Dragon
Dragon
Dragon
Dragon
Dragon
Species: Saint Ability: Capable of listening to ten people's conversations at the same time
Species: Human? (a taoist who self-identifies as a shikaisen) Ability: Manipulating feng shui
Dragon
Dragon
Species: Sarugami Name: Son Biten Ability: Capable of manipulating wild monkeys
Species: Human-oni Name: Zanmu Nippaku Ability: Capable of manipulating nothingness
Species: Immortal yamainu Name: Enoko Mitsugashira Ability: Capable of manipulating traps
Species: Human Ability: Ability to use magic Ability: Capable of using magic
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
Species: Oni Ability: The ability to wield unexplainable phenomena
Species: Inchling Ability: Using the Miracle Mallet
Species: Menreiki Ability: Ability to manipulate emotion
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
Species: Bridge Princess Ability: Manipulating jealousy
Species: Fallen Celestial
Species: Youkai (Oarfish)
Species: Misfortune god Power: Stockpiling misfortune
Species: Yama Ability: Establishing things as clear good and evil
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
Species: Ushi-oni Ability: Capable of changing the weight of everyday objects
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
Matriarch of the Keiga Family Saki Kurokoma Species: Kurokoma Ability: Capable of having unmatched leg strength
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
Species: Human-oni Name: Zanmu Nippaku Ability: Capable of manipulating nothingness
Species: Yama Ability: Establishing things as clear good and evil
Species: kasha Ability: Carrying away corpses
Species: Wolf-woman Ability: Ability to transform into a wolf on the night of the full moon
Species: Saint Ability: Capable of listening to ten people's conversations at the same time
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
Species: Fairy Ability: Ability to manipulate cold Ability: Ability to manipulate ice Ability: Capable of manipulating ice
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)
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")
Species: Komainu Ability: Capable of locating Shintoism and Buddhism
Dragon
Species: Human Occupation: Wind Priestess Ability: Causing miracles Ability: Capable of causing miracles
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
Kazami Yuuka Species: Youkai Ability: Manipulating flowers
Species: Mermaid Ability: Ability to grow in strength when underwater
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.)
Species: Yama Ability: Establishing things as clear good and evil
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"
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 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")
The Sculptor God Crafted by Utter Isolation Keiki Haniyasushin Species: God Ability: Capable of creating idols
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)
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
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
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
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
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
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
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
Reimu Hakurei Mamizou Futatsuiwa Hatate Himekaidou Kosuzu Motoori Miyoi Okunoda Tenma Momiji Inubashiri Megumu Iizunamaru Remilia Scarlet Minoriko Aki User:Sefam/Reimu
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
Residents of Myouren Temple Hata no Kokoro Aya Shameimaru Kasen Ibaraki Kosuzu Motoori Miyoi Okunoda Sumireko Usami Nue Houjuu Sannyo Komakusa Chiyari Tenkajin
Flandre Scarlet Reimu Hakurei Patchouli Knowledge Sakuya Izayoi Other servants Aya Shameimaru Tupai Hong Meiling Yukari Yakumo Residents of the Scarlet Devil Mansion
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
Kaguya Houraisan Medicine Melancholy Tewi Inaba Sakuya Izayoi Reisen Udongein Inaba Watatsuki no Toyohime & Watatsuki no Yorihime Lord Tsukuyomi Alice Margatroid Sagume Kishin
Fujiwara no Mokou Shinmyoumaru Sukuna Doremy Sweet Mamizou Futatsuiwa Kasen Ibaraki Reimu Hakurei & Marisa Kirisame Okina Matara Rinnosuke Morichika Renko Usami
Reimu Hakurei Taoist Allies Hata no Kokoro People from the Myouren Temple Mononobe no Futo Kasen Ibaraki Seiga Kaku Soga no Tojiko Saki Kurokoma
Hisami Yomotsu Reimu Hakurei Son Biten Yuuma Toutetsu Saki Kurokoma Suika Ibuki Rin Kaenbyou Chiyari Tenkajin Enoko Mitsugashira
Dolls Mima Marisa Kirisame Eirin Yagokoro Three Fairies of Light Sakuya Izayoi Yukari Yakumo Medicine Melancholy
Eternity Larva Reimu Hakurei Daiyousei Letty Whiterock Rumia, Wriggle Nightbug and Mystia Lorelei Giant Toad Three Fairies of Light Sakuya Izayoi
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
Prismriver Sisters Benben and Yatsuhashi Tsukumo Reimu Hakurei, Marisa Kirisame, and Sakuya Izayoi Benben Tsukumo Yatsuhashi Tsukumo Lyrica Prismriver Merlin Prismriver Lunasa Prismriver
Residents of Eientei Marisa Kirisame Cirno Residents of the Scarlet Devil Mansion Alice Margatroid Three Fairies of Light Remilia Scarlet Eirin Yagokoro
Suwako Moriya & Kanako Yasaka Reimu Hakurei Marisa Kirisame Kasen Ibaraki Kanako Yasaka Suwako Moriya Son Biten User:Sefam/Reimu
Sakuya Izayoi Cirno Marisa Kirisame Reimu Hakurei Yukari Yakumo Alice Margatroid Clownpiece User:Sefam/Reimu
Kaguya Houraisan Fujiwara no Mokou Tewi Inaba Lunar Capital Relations Eirin Yagokoro Seiran Sagume Kishin
Yuuma Toutetsu Toyosatomimi no Miko Yachie Kicchou and Keiki Haniyasushin Keiki Haniyasushin Zanmu Nippaku Enoko Mitsugashira Yachie Kicchou
Eiki Shiki, Yamaxanadu Youki Konpaku Others in general Yuyuko Saigyouji Residents of Eientei Yukari Yakumo Komachi Onozuka
Hisami Yomotsu Mamizou Futatsuiwa Yuuma Toutetsu Utsuho Reiuji Zanmu Nippaku Rin Kaenbyou
Kutaka Niwatari Hecatia Lapislazuli Yuyuko Saigyouji and Youmu Konpaku Komachi Onozuka Yukari Yakumo Youmu Konpaku
Eiki Shiki, Yamaxanadu Other Relationships Kasen Ibaraki Tenshi Hinanawi Kutaka Niwatari Youmu Konpaku
Hatate Himekaidou Aya Shameimaru Chimata Tenkyuu Tenma Tsukasa Kudamaki Momoyo Himemushi
Toyosatomimi no Miko Soga no Tojiko Reimu Hakurei, Marisa Kirisame, Sanae Kochiya & Youmu Konpaku Ichirin Kumoi Other Characters Fujiwara no Mokou
Yoshika Miyako Satori Komeiji Utsuho Reiuji Chen Zanmu Nippaku Chiyari Tenkajin
Yoshika Miyako Toyosatomimi no Miko Mononobe no Futo and Soga no Tojiko Kasen Ibaraki Marisa Kirisame Soga no Tojiko
Kasen Ibaraki Her Father, Lord Nai Suika Ibuki Iku Nagae Shion Yorigami Komachi Onozuka
Reimu Hakurei and Marisa Kirisame Mayumi Joutouguu Saki Kurokoma Yachie Kicchou and other animal spirits. Yachie Kicchou
Satori Komeiji Hata no Kokoro Byakuren Hijiri Rin Kaenbyou & Utsuho Reiuji Reimu Hakurei & Marisa Kirisame
Humans Marisa Kirisame Kappa Sunny Milk, Luna Child and Star Sapphire Chimata Tenkyuu
Residents of the Scarlet Devil Mansion Marisa Kirisame Yukari Yakumo Remilia Scarlet Suika Ibuki
Sakuya Izayoi Marisa Kirisame Yukari Yakumo Patchouli Knowledge Remilia Scarlet
Kagerou Imaizumi Marisa Kirisame Reimu Hakurei Yukari Yakumo Sumireko Usami
Reimu Hakurei Seija Kijin Okina Matara Benben Tsukumo and Yatsuhashi Tsukumo Sumireko Usami
Hisoutensoku Sanae Kochiya Mishaguji Utsuho Reiuji Kanako Yasaka
Yuuma Toutetsu Keiki Haniyasushin Saki Kurokoma Mayumi Joutouguu Son Biten
People in the Myouren Temple Rin Kaenbyou People in Senkai Seiga Kaku Kogasa Tatara
Yachie Kicchou Okina Matara Chiyari Tenkajin Saki Kurokoma Zanmu Nippaku
Megumu Iizunamaru Tsukasa Kudamaki Momoyo Himemushi Nitori Kawashiro
Reimu Hakurei Hecatia Lapislazuli Junko Three Fairies of Light
Mamizou Futatsuiwa Koishi Komeiji Toyosatomimi no Miko Byakuren Hijiri
Clownpiece Eiki Shiki Junko Eiki Shiki, Yamaxanadu
Houyi Clownpiece Hecatia Lapislazuli Chang'e
Reisen Udongein Inaba Eirin Yagokoro Fujiwara no Mokou Tewi Inaba
Reimu Hakurei Fujiwara no Mokou Hieda no Akyuu Yukari Yakumo
Marisa Kirisame Reimu Hakurei Alice Margatroid User:Sefam/Reimu
Reimu Hakurei Hakurei God Momoyo Himemushi Tsukasa Kudamaki
Aya Shameimaru and Hatate Himekaidou Kappa Tenma Aya Shameimaru
Megumu Iizunamaru Tsukasa Kudamaki Misumaru Tamatsukuri Chimata Tenkyuu
Koishi Komeiji Rin Kaenbyou & Utsuho Reiuji Rin Kaenbyou Parsee Mizuhashi
Reisen Udongein Inaba Kaguya Houraisan Gensokyo's youkai rabbits Eirin Yagokoro
Chimata Tenkyuu Misumaru Tamatsukuri Megumu Iizunamaru Momoyo Himemushi
Kanako Yasaka Rin Kaenbyou Suwako Moriya Chiyari Tenkajin
Reimu Hakurei Marisa Kirisame Okina Matara (creator)
Raiko Horikawa Yatsuhashi Tsukumo Seija Kijin & Shinmyoumaru Sukuna
Saki Kurokoma Marisa Kirisame Zanmu Nippaku
Marisa Kirisame Remilia Scarlet Okina Matara
Suika Ibuki The Cast of Scarlet Weather Rhapsody Tenshi Hinanawi
Sanae Kochiya Suwako Moriya Utsuho Reiuji
Nitori Kawashiro Momiji Inubashiri Takane Yamashiro
Myouren Temple Yoshika Miyako Hakurei Shrine & Moriya Shrine[1]
Reimu Hakurei Mamizou Futatsuiwa Aya Shameimaru
Mystia Lorelei Byakuren Hijiri User:Araceli/Character Pages
Raiko Horikawa Sisters Yuyuko Saigyouji
Raiko Horikawa Sisters Yuyuko Saigyouji
Eirin Yagokoro Alice Margatroid Humanity
Raiko Horikawa Sisters Yuyuko Saigyouji
Shizuha Aki Aya Shameimaru People from the Human Village
Mamizou Futatsuiwa Aya Shameimaru Suika Ibuki
Mamizou Futatsuiwa Minamitsu Murasa & Ichirin Kumoi Byakuren Hijiri
Yukari Yakumo Kasen Ibaraki Okina Matara
Mamizou Futatsuiwa Tengu & Kappa Moriya Shrine
Lyrica Prismriver Merlin Prismriver Lunasa Prismriver
Seiga Kaku Toyosatomimi no Miko Mononobe no Futo
Sanae Kochiya Yachie Kicchou Zanmu Nippaku
Aya Shameimaru Megumu Iizunamaru Momiji Inubashiri
Raiko Horikawa Seija Kijin & Shinmyoumaru Sukuna Benben Tsukumo
Suika Ibuki Kasen Ibaraki Yukari Yakumo
Seija Kijin Shinmyoumaru Sukuna
Yukari Yakumo Rin Kaenbyou
Yuyuko Saigyouji Hecatia Lapislazuli
Reimu Hakurei User:Sefam/Reimu
Aya Shameimaru Megumu Iizunamaru
Zanmu Nippaku Chiyari Tenkajin
Byakuren Hijiri Mononobe no Futo
Shion Yorigami Byakuren Hijiri
Rinnosuke Morichika Wakasagihime
Eiki Shiki, Yamaxanadu Komachi Onozuka
Satono Nishida Okina Matara
Keiki Haniyasushin Yachie Kicchou
Shou Toramaru, Ichirin Kumoi & Nazrin Byakuren Hijiri
Takane Yamashiro Sannyo Komakusa
Suika Ibuki Satori Komeiji
Sumireko Usami Koishi Komeiji
Yukari Yakumo Yuuka Kazami
Sakuya Izayoi Youmu Konpaku
Byakuren Hijiri Mamizou Futatsuiwa
Koishi Komeiji Satori Komeiji
Reimu Hakurei User:Sefam/Reimu
Reisen Udongein Inaba Eirin Yagokoro
Mai Teireida Okina Matara
Benben Tsukumo and Yatsuhashi Tsukumo Shinmyoumaru Sukuna
Benben Tsukumo Yatsuhashi Tsukumo
Reisen Udongein Inaba Ringo
Joon Yorigami Tenshi Hinanawi
Nazrin, Minamitsu Murasa, Ichirin Kumoi & Bishamonten Byakuren Hijiri
Moriya Shrine Kappa
Character Name #1 Character Name #2
Reimu Hakurei User:Sefam/Reimu
Youmu Konpaku Yuyuko Saigyouji
Elly Reimu and Marisa
Momiji Inubashiri
Raiko Horikawa
Junko
Touhou Wiki:Guidelines/Standardization of Character Pages
Touhou Wiki:Guidelines/Standardization of Character Pages
Cirno
Alice Margatroid
Sumireko Usami
Yukari Yakumo
Yuuka Kazami
Cirno
Tewi Inaba
Cirno
Misumaru Tamatsukuri
Kogasa Tatara
Tenshi Hinanawi
Keine Kamishirasawa
Suwako Moriya
Remilia Scarlet
Junko
Medicine Melancholy
Nitori Kawashiro
Kasen Ibaraki
Fujiwara no Mokou
Kasen Ibaraki
Kasen Ibaraki
Marisa Kirisame
Cirno
Eirin Yagokoro
Reisen Udongein Inaba
Yuyuko Saigyouji
Marisa Kirisame
Nue Houjuu
Suwako Moriya
Seiga Kaku
Byakuren Hijiri
Kogasa Tatara
Kyouko Kasodani
Marisa Kirisame
Shou Toramaru
Yukari Yakumo
Byakuren Hijiri
Aunn Komano
Mononobe no Futo
Komachi Onozuka
Fujiwara no Mokou
Remilia Scarlet
Byakuren Hijiri
Youmu Konpaku
Minoriko Aki
Toyosatomimi no Miko
Yoshika Miyako
Yoshika Miyako
Raiko Horikawa
Yukari Yakumo
Keiki Haniyasushin
Fujiwara no Mokou
Mononobe no Futo
Raiko Horikawa
Sumireko Usami
Seiran
User:Sefam/Reimu
Cirno
Yuyuko Saigyouji
Okina Matara
Marisa Kirisame
Yukari Yakumo
Minoriko Aki
Minamitsu Murasa
Kasen Ibaraki
Nitori Kawashiro
Sanae Kochiya
Toyosatomimi no Miko
Sannyo Komakusa
Iku Nagae
Reimu Hakurei
Yukari Yakumo
Byakuren Hijiri
Marisa Kirisame
Remilia Scarlet
Kyouko Kasodani
User:Sefam/Reimu
Kagerou Imaizumi
Eirin Yagokoro
Saki Kurokoma
Keiki Haniyasushin
Suika Ibuki
Yukari Yakumo
Eiki Shiki, Yamaxanadu
Okina Matara
Very nice. And as expected, Yukari's the most well connected of them all. I guess that's it for now.