faker 2.15.1 → 2.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +31 -0
  3. data/History.md +4 -4
  4. data/README.md +2 -1
  5. data/lib/faker.rb +1 -1
  6. data/lib/faker/blockchain/tezos.rb +28 -0
  7. data/lib/faker/default/app.rb +1 -1
  8. data/lib/faker/default/avatar.rb +1 -1
  9. data/lib/faker/default/barcode.rb +33 -22
  10. data/lib/faker/default/cannabis.rb +10 -0
  11. data/lib/faker/default/chuck_norris.rb +1 -0
  12. data/lib/faker/default/code.rb +2 -2
  13. data/lib/faker/default/company.rb +18 -0
  14. data/lib/faker/default/driving_licence.rb +3 -2
  15. data/lib/faker/default/file.rb +6 -4
  16. data/lib/faker/default/hipster.rb +6 -6
  17. data/lib/faker/default/internet.rb +227 -2
  18. data/lib/faker/default/json.rb +3 -2
  19. data/lib/faker/default/lorem.rb +158 -3
  20. data/lib/faker/default/lorem_flickr.rb +3 -8
  21. data/lib/faker/default/lorem_pixel.rb +2 -1
  22. data/lib/faker/default/markdown.rb +4 -2
  23. data/lib/faker/default/omniauth.rb +3 -10
  24. data/lib/faker/default/placeholdit.rb +3 -2
  25. data/lib/faker/default/string.rb +3 -2
  26. data/lib/faker/games/touhou.rb +75 -0
  27. data/lib/faker/movies/star_wars.rb +72 -0
  28. data/lib/faker/music/rock_band.rb +12 -0
  29. data/lib/faker/quotes/rajnikanth.rb +1 -0
  30. data/lib/faker/quotes/shakespeare.rb +34 -0
  31. data/lib/faker/tv_shows/big_bang_theory.rb +1 -1
  32. data/lib/faker/tv_shows/suits.rb +1 -1
  33. data/lib/faker/version.rb +1 -1
  34. data/lib/locales/en/football.yml +3 -3
  35. data/lib/locales/en/lebowski.yml +1 -1
  36. data/lib/locales/en/rock_band.yml +1 -0
  37. data/lib/locales/en/super_smash_bros.yml +2 -0
  38. data/lib/locales/en/touhou.yml +839 -0
  39. data/lib/locales/fr.yml +4 -4
  40. data/lib/locales/ja.yml +5 -0
  41. metadata +10 -8
@@ -0,0 +1,75 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Faker
4
+ class Games
5
+ class Touhou < Base
6
+ flexible :touhou
7
+ class << self
8
+ ##
9
+ # Produces the name of a Touhou game.
10
+ #
11
+ # @return [String]
12
+ #
13
+ # @example
14
+ # Faker::Games::Touhou.game #=> "Mountain of Faith"
15
+ #
16
+ # @faker.version next
17
+ def game
18
+ fetch('games.touhou.games')
19
+ end
20
+
21
+ ##
22
+ # Produces the name of a character from the Touhou games.
23
+ #
24
+ # @return [String]
25
+ #
26
+ # @example
27
+ # Faker::Games::Touhou.character #=> "Sanae Kochiya"
28
+ #
29
+ # @faker.version next
30
+ def character
31
+ fetch('games.touhou.characters')
32
+ end
33
+
34
+ ##
35
+ # Produces the name of a location from the Touhou games.
36
+ #
37
+ # @return [String]
38
+ #
39
+ # @example
40
+ # Faker::Games::Touhou.location #=> "Moriya Shrine"
41
+ #
42
+ # @faker.version next
43
+ def location
44
+ fetch('games.touhou.locations')
45
+ end
46
+
47
+ ##
48
+ # Produces the name of a spell card from the Touhou games.
49
+ #
50
+ # @return [String]
51
+ #
52
+ # @example
53
+ # Faker::Games::Touhou.spell_card #=> 'Esoterica "Gray Thaumaturgy"'
54
+ #
55
+ # @faker.version next
56
+ def spell_card
57
+ fetch('games.touhou.spell_cards')
58
+ end
59
+
60
+ ##
61
+ # Produces the name of a song from the Touhou games.
62
+ #
63
+ # @return [String]
64
+ #
65
+ # @example
66
+ # Faker::Games::Touhou.song #=> "Faith Is for the Transient People"
67
+ #
68
+ # @faker.version next
69
+ def song
70
+ fetch('games.touhou.songs')
71
+ end
72
+ end
73
+ end
74
+ end
75
+ end
@@ -161,34 +161,106 @@ module Faker
161
161
  fetch("star_wars.quotes.#{character}")
162
162
  end
163
163
 
164
+ ##
165
+ # Generates numbers array
166
+ #
167
+ # @return [Array]
168
+ #
169
+ # @example
170
+ # Faker::Movies::StarWars.call_numbers #=> ["Leader", "#"]
171
+ #
172
+ # @faker.version 1.6.2
164
173
  def call_numbers
165
174
  fetch_all('star_wars.call_numbers')
166
175
  end
167
176
 
177
+ ##
178
+ # Returns squadrons array
179
+ #
180
+ # @return [Array]
181
+ #
182
+ # @example
183
+ # Faker::Movies::StarWars.call_squadrons #=> ["Rogue", "Red", "Gray", "Green", "Blue", "Gold", "Black", "Yellow", "Phoenix"]
184
+ #
185
+ # @faker.version 1.6.2
168
186
  def call_squadrons
169
187
  fetch_all('star_wars.call_squadrons')
170
188
  end
171
189
 
190
+ ##
191
+ # Returns all character names in movie
192
+ #
193
+ # @return [Array]
194
+ #
195
+ # @example
196
+ # Faker::Movies::StarWars.characters
197
+ #
198
+ # @faker.version 1.6.2
172
199
  def characters
173
200
  fetch_all('star_wars.characters')
174
201
  end
175
202
 
203
+ ##
204
+ # Returns droid list
205
+ #
206
+ # @return [Array]
207
+ #
208
+ # @example
209
+ # Faker::Movies::StarWars.droids
210
+ #
211
+ # @faker.versionn 1.6.2
176
212
  def droids
177
213
  fetch_all('star_wars.droids')
178
214
  end
179
215
 
216
+ ##
217
+ # Lists out all planet names
218
+ #
219
+ # @return [Array]
220
+ #
221
+ # @example
222
+ # Faker::Movies::StarWars.planets
223
+ #
224
+ # @faker.version 1.6.2
180
225
  def planets
181
226
  fetch_all('star_wars.planets')
182
227
  end
183
228
 
229
+ ##
230
+ # Returns name of all species
231
+ #
232
+ # @return [Array]
233
+ #
234
+ # @example
235
+ # Faker::Movies::StarWars.species
236
+ #
237
+ # @faker.version 1.6.2
184
238
  def species
185
239
  fetch_all('star_wars.species')
186
240
  end
187
241
 
242
+ ##
243
+ # Lists out all vehicles
244
+ #
245
+ # @return [Array]
246
+ #
247
+ # @example
248
+ # Faker::Movies::StarWars.vehicles
249
+ #
250
+ # @faker.version 1.6.2
188
251
  def vehicles
189
252
  fetch_all('star_wars.vehicles')
190
253
  end
191
254
 
255
+ ##
256
+ # All wookiee words
257
+ #
258
+ # @return [Array]
259
+ #
260
+ # @example
261
+ # Faker::Movies::StarWars.wookiee_words
262
+ #
263
+ # @faker.version 1.6.2
192
264
  def wookiee_words
193
265
  fetch_all('star_wars.wookiee_words')
194
266
  end
@@ -16,6 +16,18 @@ module Faker
16
16
  def name
17
17
  fetch('rock_band.name')
18
18
  end
19
+
20
+ # Produces a rock song.
21
+ #
22
+ # @return [String]
23
+ #
24
+ # @example
25
+ # Faker::Music::RockBand.song #=> "Dani California"
26
+ #
27
+ # @faker.version next
28
+ def song
29
+ fetch('rock_band.song')
30
+ end
19
31
  end
20
32
  end
21
33
  end
@@ -6,6 +6,7 @@ module Faker
6
6
  flexible :rajnikanth
7
7
 
8
8
  class << self
9
+ ##
9
10
  # Produces a Rajnikanth.
10
11
  # Original list of jokes:
11
12
  # http://www.rajinikanthjokes.com/
@@ -56,18 +56,52 @@ module Faker
56
56
  sample(romeo_and_juliet)
57
57
  end
58
58
 
59
+ ##
60
+ # Generates quote from Hamlet
61
+ #
62
+ # @return [String]
63
+ #
64
+ # @example
65
+ # Faker::Quotes::Shakespeare.hamlet #=> "A little more than kin, and less than kind."
66
+ #
67
+ # @faker.version 1.9.2
59
68
  def hamlet
60
69
  fetch('shakespeare.hamlet')
61
70
  end
62
71
 
72
+ ##
73
+ # Generates quote from 'As you like it!'
74
+ #
75
+ # @return [String]
76
+ #
77
+ # @example
78
+ # Faker::Quotes::Shakespeare.as_you_like_it #=> "How bitter a thing it is to look into happiness through another man's eyes!"
79
+ #
80
+ # @faker.version 1.9.2
63
81
  def as_you_like_it
64
82
  fetch('shakespeare.as_you_like_it')
65
83
  end
66
84
 
85
+ ##
86
+ # Returns quote from 'King Rechard III'
87
+ #
88
+ # @return [String]
89
+ #
90
+ # @example
91
+ # Faker::Quotes::Shakespeare #=> "The king's name is a tower of strength."
67
92
  def king_richard_iii
68
93
  fetch('shakespeare.king_richard_iii')
69
94
  end
70
95
 
96
+ ##
97
+ # Quote from 'Romeo and Juliet'
98
+ #
99
+ # @return [String]
100
+ #
101
+ # @example
102
+ # Faker::Quotes::Shakespeare.romeo_and_juliet #=> "Wisely and slow; they stumble that run fast."
103
+ #
104
+ # @faker.version 1.9.2
71
105
  def romeo_and_juliet
72
106
  fetch('shakespeare.romeo_and_juliet')
73
107
  end
@@ -25,7 +25,7 @@ module Faker
25
25
  # @return [String]
26
26
  #
27
27
  # @example
28
- # Faker::TvShows::BigBangTheory.quote #=> "I'm not crazy. My mother had me tested."
28
+ # Faker::TvShows::BigBangTheory.quote #=> "I'm not crazy. My mother had me tested."
29
29
  #
30
30
  # @faker.version 2.13.0
31
31
  def quote
@@ -25,7 +25,7 @@ module Faker
25
25
  # @return [String]
26
26
  #
27
27
  # @example
28
- # Faker::TvShows::Suits.quote #=> "Don't play the odds, play the man."
28
+ # Faker::TvShows::Suits.quote #=> "Don't play the odds, play the man."
29
29
  #
30
30
  # @faker.version 2.13.0
31
31
  def quote
data/lib/faker/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Faker #:nodoc:
4
- VERSION = '2.15.1'
4
+ VERSION = '2.16.0'
5
5
  end
@@ -1,8 +1,8 @@
1
1
  en:
2
2
  faker:
3
3
  football:
4
- teams: ["Real Madrid", "FC Barcelona", "Valencia CF", "Atletico Madrid", "Manchester United", "Chelsea", "Liverpool", "Arsenal", "Tottenham Hotspur", "AC Milan", "Inter Milan", "AS Roma", "Juventus", "Bayern Munich", "Borussia Dortmund", "Schalke 04", "Benfica", "Galatasaray", "PSV Eindhoven", "LA Galaxy"]
5
- players: ["Lionel Messi", "Gerard Pique", "Sergio Ramos", "Cristiano Ronaldo", "David De Gea", "Paul Pogba", "Antoine Griezmann", "Alvaro Morata", "Andres Iniesta", "Roberto Firmino", "Mohammed Salah", "Harry Kane", "Delle Alli", "Arjen Robben", "Franck Ribery", "Marco Reus", "Robert Lewandoski", "Zlatan Ibrahimovic", "Edinson Cavani", "Sergio Aguero", "Neymar", "Mesut Ozil", "Gianluigi Buffon", "Willian", "Manuel Neuer", "Juan Mata", "Manuel Neuer", "Cesc Fabregas", "Gareth Bale", "Eden Hazard", "Mario Mandzukic"]
6
- coaches: ["Ernesto Valverde", "Zinedine Zidane", "Jose Mourinho", "Antonio Conte", "Jurgen Klopp", "Mauricio Pochettino", "Diego Simeone", "Massimiliano Allegri", "Jupp Heyneckes", "Arsene Wenger", "Jorge Sampaoli", "Fernando Santos", "Didier Deschamps", "Joachim Low", "Julen Lopetegui", "Mauricio Pochettino", "Unai Emery", "Massimiliano Allegri" ]
4
+ teams: ["Real Madrid", "FC Barcelona", "Valencia CF", "Atletico Madrid", "Manchester United", "Chelsea", "Liverpool", "Arsenal", "Tottenham Hotspur", "AC Milan", "Inter Milan", "AS Roma", "Juventus", "Bayern Munich", "Borussia Dortmund", "Schalke 04", "Benfica", "Galatasaray", "PSV Eindhoven", "LA Galaxy", "Paris Saint Germain"]
5
+ players: ["Lionel Messi", "Gerard Pique", "Sergio Ramos", "Cristiano Ronaldo", "David De Gea", "Paul Pogba", "Antoine Griezmann", "Alvaro Morata", "Andres Iniesta", "Roberto Firmino", "Mohammed Salah", "Harry Kane", "Delle Alli", "Arjen Robben", "Franck Ribery", "Marco Reus", "Robert Lewandoski", "Zlatan Ibrahimovic", "Edinson Cavani", "Sergio Aguero", "Neymar", "Mesut Ozil", "Gianluigi Buffon", "Willian", "Manuel Neuer", "Juan Mata", "Manuel Neuer", "Cesc Fabregas", "Gareth Bale", "Eden Hazard", "Mario Mandzukic", "Kylian Mbappe"]
6
+ coaches: ["Ernesto Valverde", "Zinedine Zidane", "Jose Mourinho", "Antonio Conte", "Jurgen Klopp", "Mauricio Pochettino", "Diego Simeone", "Massimiliano Allegri", "Jupp Heyneckes", "Arsene Wenger", "Jorge Sampaoli", "Fernando Santos", "Didier Deschamps", "Joachim Low", "Julen Lopetegui", "Mauricio Pochettino", "Unai Emery", "Massimiliano Allegri", "Thomas Tuchel"]
7
7
  competitions: ["UEFA European Championship", "Asian Cup", "African Cup of Nations", "Copa America", "UEFA Champions League", "FIFA World Cup", "UEFA Europa League", "Serie A", "Barclays Premier League", "Bundesliga", "Liga Santander", "FA Cup", "Ligue 1", "Primeira Liga", "Eredivisie", "Super League", "Major League Soccer", "Coppa Italia", "DFB Pokal", "CONCACAF Gold Cup", "Nations Cup", "Copa del Rey"]
8
8
  positions: ["Goalkeeper", "Full Back", "Right Back", "Left Back", "Defensive Midfielder", "Midfielder", "Attacking Midfielder", "Right Midfielder", "Left Midfielder", "Right Wing", "Left Wing", "Second Striker", "Centre Forward"]
@@ -12,7 +12,7 @@ en:
12
12
  "Is this your homework, Larry?",
13
13
  "Yeah, well, that's just, like, your opinion, man.",
14
14
  "Mark it zero!",
15
- "So then you have no frame of reference here Donny. You're like a child who wonders into the middle of a movie.",
15
+ "So then you have no frame of reference here Donny. You're like a child who wanders into the middle of a movie.",
16
16
  "You want a toe? I can get you a toe, believe me. There are ways, Dude. You don't wanna know about it, believe me.",
17
17
  "Hell, I can get you a toe by 3 o'clock this afternoon...with nail polish.",
18
18
  "Calmer than you are.",
@@ -2,3 +2,4 @@ en:
2
2
  faker:
3
3
  rock_band:
4
4
  name: ["Led Zeppelin", "The Beatles", "Pink Floyd", "The Jimi Hendrix Experience", "Van Halen", "Queen", "The Eagles", "Metallica", "U2", "Bob Marley and the Wailers", "The Police", "The Doors", "Stone Temple Pilots", "Rush", "Genesis", "Prince and the Revolution", "Yes", "Earth Wind and Fire", "The Bee Gees", "The Rolling Stones", "The Beach Boys", "Soundgarden", "The Who", "Steely Dan", "James Brown and the JBs", "AC/DC", "Fleetwood Mac", "Crosby, Stills, Nash and Young", "The Allman Brothers", "ZZ Top", "Aerosmith", "Cream", "Bruce Springsteen & The E Street Band", "The Grateful Dead", "Guns 'N Roses", "Pearl Jam", "Boston", "Dire Straits", "King Crimson", "Parliament Funkadelic", "Red Hot Chili Peppers", "Bon Jovi", "Dixie Chicks", "Foreigner", "David Bowie and The Spiders From Mars", "The Talking Heads", "Jethro Tull", "The Band", "The Beastie Boys", "Nirvana", "Rage Against The Machine", "Sly and the Family Stone", "The Clash", "Tool", "Journey", "No Doubt", "Creedence Clearwater Revival", "Deep Purple", "Alice In Chains", "Orbital", "Little Feat", "Duran Duran", "Living Colour", "Frank Zappa and the Mothers of Invention", "The Carpenters", "Audioslave", "The Pretenders", "Primus", "Blondie", "Black Sabbath", "Lynyrd Skynyrd", "Sex Pistols", "Isaac Hayes and the Movement", "R.E.M.", "Traffic", "Buffalo Springfield", "Derek and the Dominos", "The Jackson Five", "The O'Jays", "Harold Melvin and the Blue Notes", "Underworld", "Thievery Corporation", "Motley Crue", "Janis Joplin and Big Brother and the Holding Company", "Blind Faith", "The Animals", "The Roots", "The Velvet Underground", "The Kinks", "Radiohead", "The Scorpions", "Kansas", "Iron Maiden", "Motorhead", "Judas Priest", "The Orb", "The Cure", "Coldplay", "Slayer", "Black Eyed Peas"]
5
+ song: ["Are You Gonna Be My Girl", "Dani California", "Detroit Rock City", "Stairway to Heaven", "Hey Jude", "All Along the Watchtower", "Satisfaction", "Like A Rolling Stone", "Another Brick In The Wall", "Won't Get Fooled Again", "Hotel California", "Layla", "Sweet Home Alabama", "Bohemian Rhapsody", "Riders on the Storm", "Rock and Roll", "Barracuda", "La Grange", "Dream On", "More Than a Feeling", "Sultans of Swing", "You Shook Me All Night Long", "Kashmir", "Lola", "Carry on Wayward Son", "Tiny Dancer", "Locomotive Breath", "I Still Haven't Found", "Magic Carpet Ride", "Free Bird", "Purple Haze", "Tom Sawyer", "Let It Be", "Baba O'Riley", "The Joker", "Roxanne", "Time", "It's a Long Way to the Top", "Whole Lotta Love", "The Chain", "I've Seen All Good People", "For What It's Worth", "Black Magic Woman", "Nights in White Satin", "While My Guitar Gently Weeps", "Gimme Shelter", "Gold Dust Woman", "Fortunate Son", "American Pie", "Bad Company", "Waitin' For the Bus", "Over the Hills and Far Away", "Owner of a Lonely Heart", "The Logical Song", "A Day in the Life", "Sweet Emotion", "Down on the Corner", "My Sweet Lord", "Knockin' on Heaven's Door", "Just What I Needed", "Don't Fear the Reaper", "Behind Blue Eyes", "Do It Again", "Who Do You Love", "From the Beginning", "Already Gone", "Here Comes The Sun", "With or Without You", "Life's Been Good", "Breakdown", "Comfortably Numb", "Ramble On", "I'd Love to Change the World", "Foreplay Longtime", "Brown Eyed Girl", "Back In Black", "Take it Easy", "Sgt. Pepper", "We Will Rock You", "Dancing Days", "Turn the Page", "All Right Now", "Black Water", "Oh Well", "Me and Bobby McGee", "Rocket Man", "Ohio", "You Really Got Me", "Bloody Well Right", "Dirty Deeds", "Aqualung", "The Wind Cries Mary", "Burnin' for You", "Moving in Stereo", "Bargain", "House of the Rising Sun", "Maybe I'm Amazed", "Bennie & the Jets", "Dust in the Wind", "Crazy On You", "Walkin' On The Moon", "Fire", "Runnin' With The Devil", "Immigrant Song", "Jumpin' Jack Flash", "Levon", "Call Me The Breeze", "You Make Lovin' Fun", "Come Together", "Dreams", "Fire On High", "Wish You Were Here", "Rocky Racoon", "Walk This Way", "In My Life", "Every Breath You Take", "Going To California", "Let It Rain", "Killer Queen", "Street Fighting Man", "Going Mobile", "Panama", "Train Kept A Rollin'", "Highway To Hell", "Dance The Night Away", "In Your Eyes"]
@@ -73,6 +73,7 @@ en:
73
73
  - Roy
74
74
  - Ryu
75
75
  - Samus
76
+ - Sephiroth
76
77
  - Sheik
77
78
  - Shulk
78
79
  - Simon Belmont
@@ -161,6 +162,7 @@ en:
161
162
  - New Donk City Hall
162
163
  - New Pork City
163
164
  - Norfair
165
+ - Northern Cave
164
166
  - Onett
165
167
  - Orbital Gate Assault
166
168
  - Pac-Land
@@ -0,0 +1,839 @@
1
+ en:
2
+ faker:
3
+ games:
4
+ touhou:
5
+ games:
6
+ - Highly Responsive to Prayers
7
+ - Story of Eastern Wonderland
8
+ - Phantasmagoria of Dim. Dream
9
+ - Lotus Land Story
10
+ - Mystic Square
11
+ - Embodiment of Scarlet Devil
12
+ - Perfect Cherry Blossom
13
+ - Imperishable Night
14
+ - Immaterial and Missing Power
15
+ - Phantasmagoria of Flower View
16
+ - Shoot the Bullet
17
+ - Mountain of Faith
18
+ - Scarlet Weather Rhapsody
19
+ - Subterranean Animism
20
+ - Undefined Fantastic Object
21
+ - Touhou Hisoutensoku
22
+ - Double Spoiler
23
+ - Fairy Wars
24
+ - Ten Desires
25
+ - Hopeless Masquerade
26
+ - Double Dealing Character
27
+ - Impossible Spell Card
28
+ - Urban Legend in Limbo
29
+ - Legacy of Lunatic Kingdom
30
+ - Hidden Star in Four Seasons
31
+ - Antinomy of Common Flowers
32
+ - Violet Detector
33
+ - Wily Beast and Weakest Creature
34
+ characters:
35
+ - Alice Margatroid
36
+ - Aya Shameimaru
37
+ - Aya Shameimaru
38
+ - Benben Tsukumo
39
+ - Byakuren Hijiri
40
+ - Chen
41
+ - Cirno
42
+ - Clownpiece
43
+ - Daiyousei
44
+ - Doremy Sweet
45
+ - Eika Ebisu
46
+ - Eirin Yagokoro
47
+ - Flandre Scarlet
48
+ - Fujiwara no Mokou
49
+ - Hata no Kokoro
50
+ - Hatate Himekaidou
51
+ - Hecatia Lapislazuli
52
+ - Hieda no Akyu
53
+ - Hina Kagiyama
54
+ - Hong Meiling
55
+ - Ichirin Kumoi
56
+ - Iku Nagae
57
+ - Junko
58
+ - Kagerou Imaizumi
59
+ - Kaguya Houraisan
60
+ - Kana Anaberal
61
+ - Kanako Yasaka
62
+ - Kasen Ibaraki
63
+ - Keiki Haniyasushin
64
+ - Keine Kamishirasawa
65
+ - Kikuri
66
+ - Kisume
67
+ - Koakuma
68
+ - Kogasa Tatara
69
+ - Koishi Komeiji
70
+ - Komachi Onozuka
71
+ - Konngara
72
+ - Kosuzu Motoori
73
+ - Kotohime
74
+ - Kurumi
75
+ - Kutaka Niwatari
76
+ - Layla Prismriver
77
+ - Letty Whiterock
78
+ - Lily White
79
+ - Luna Child
80
+ - Lunasa Prismriver
81
+ - Lyrica Prismriver
82
+ - Mai
83
+ - Mamizou Futatsuiwa
84
+ - Maribel Hearn
85
+ - Marisa Kirisame
86
+ - Mayumi Joutouguu
87
+ - Medicine Melancholy
88
+ - Merlin Prismriver
89
+ - Minamitsu Murasa
90
+ - Minoriko Aki
91
+ - Momiji Inubashiri
92
+ - Mononobe no Futo
93
+ - Mystia Lorelei
94
+ - Nazrin
95
+ - Nitori Kawashiro
96
+ - Nue Houjuu
97
+ - Parsee Mizuhashi
98
+ - Patchouli Knowledge
99
+ - Raiko Horikawa
100
+ - Ran Yakumo
101
+ - Reimu Hakurei
102
+ - Reisen Udongein Inaba
103
+ - Remilia Scarlet
104
+ - Renko Usami
105
+ - Rin Kaenbyou
106
+ - Rin Satsuki
107
+ - Ringo
108
+ - Rinnosuke Morichika
109
+ - Rumia
110
+ - Sagume Kishin
111
+ - Saki Kurokoma
112
+ - Sakuya Izayoi
113
+ - Sanae Kochiya
114
+ - Satori Komeiji
115
+ - Seiga Kaku
116
+ - Seija Kijin
117
+ - Seiran
118
+ - Sekibanki
119
+ - Shikieiki Yamaxanadu
120
+ - Shinmyoumaru Sukuna
121
+ - Shizuha Aki
122
+ - Shou Toramaru
123
+ - Soga no Tojiko
124
+ - Star Sapphire
125
+ - Suika Ibuki
126
+ - Sumireko Usami
127
+ - Sunny Milk
128
+ - Suwako Moriya
129
+ - Tenshi Hinanawi
130
+ - Tewi Inaba
131
+ - Toyosatomimi no Miko
132
+ - Utsuho Reiuji
133
+ - Wakasagihime
134
+ - Watatsuki no Toyohime
135
+ - Watatsuki no Yorihime
136
+ - Wriggle Nightbug
137
+ - Yachie Kicchou
138
+ - Yamame Kurodani
139
+ - Yatsuhashi Tsukumo
140
+ - Yoshika Miyako
141
+ - Youmu Konpaku
142
+ - Yukari Yakumo
143
+ - Yuugi Hoshiguma
144
+ - Yuuka Kazami
145
+ - Yuyuko Saigyouji
146
+ spell_cards:
147
+ - Spirit Sign "Yin-Yang Sign"
148
+ - Spirit Sign "Fantasy Seal"
149
+ - Spirit Sign "Hakurei Illusion"
150
+ - Magic Sign "Stardust"
151
+ - Magic Sign "Stardust Reverie"
152
+ - Magic Sign "Illusion Star"
153
+ - Time Sign "Private Vision"
154
+ - Time Sign "Mysterious Jack"
155
+ - Hesitation Sign "Sword of Binding Desires"
156
+ - Hesitation Sign "Half Body Disillusion"
157
+ - Wave Sign "Lunar Surface Ripple (Luna Wave)"
158
+ - Scatter Sign "Dream of Prosperity (Luna Megalopolis)"
159
+ - Freeze Sign "Perfect Freeze"
160
+ - Freeze Sign "Cold Divinity"
161
+ - Noise Sign "Soul Noise Flow"
162
+ - Noise Sign "Lyrica Solo Live"
163
+ - Bird Sign "Human Cage"
164
+ - Bird Sign "Human Cage Double"
165
+ - Bird Sign "Mysterious Song"
166
+ - Rabbit Sign "Great Fortune Crest"
167
+ - Rabbit Sign "Bare White Rabbit of Inaba"
168
+ - Flower Sign "Blossoming of Gensokyo"
169
+ - Fantasy "The Beauties of Nature"
170
+ - Wind Sign "Wind God's Fan"
171
+ - Gust "Wind God Girl"
172
+ - Poison Sign "Nerve Poison"
173
+ - Poison Sign "A Poison for Melancholy"
174
+ - Thrown Coins "Yesterday's Money"
175
+ - Shinigami "Higan Retour"
176
+ - Guilt Sign "Wandering Sin"
177
+ - Judgement "Last Judgement"
178
+ - Noise Sign "Soul Go Happy"
179
+ - Noise Sign "Merlin Happy Live"
180
+ - Noise Sign "Noise Melancholy"
181
+ - Noise Sign "Lunasa Solo Live"
182
+ - Leaf Sign "Falling Leaves of Madness"
183
+ - Fall Sign "Fall Sky"
184
+ - Fall Sign "The Fall Sky and a Maiden's Heart"
185
+ - Plenty Sign "Owotoshi Harvester"
186
+ - Bumper Crop "Promise of the Wheat God"
187
+ - Bad Luck Sign "Bad Fortune"
188
+ - Bad Luck Sign "Biorhythm of the Misfortune God"
189
+ - Flawed Sign "Broken Amulet"
190
+ - Scar "Broken Charm of Protection"
191
+ - Evil Spirit "Misfortune's Wheel"
192
+ - Fate "Old Lady Ohgane's Fire"
193
+ - Wound Sign "Pain Flow"
194
+ - Wound Sign "Exiled Doll"
195
+ - Optics "Optical Camouflage"
196
+ - Optics "Hydro Camouflage"
197
+ - Flood "Ooze Fooding"
198
+ - Flood "Diluvial Mere"
199
+ - Drown "Trauma in the Glimmering Depths"
200
+ - Water Sign "Kappa's Pororoca"
201
+ - Water Sign "Kappa's Flash Flood"
202
+ - Water Sign "Kappa's Great Illusionary Waterfall"
203
+ - Kappa "Monster Cucumber"
204
+ - Kappa "Exteeeending Aaaaarm"
205
+ - Kappa "Spin the Cephalic Plate"
206
+ - Crossroad Sign "Crossroads of Heaven"
207
+ - Crossroad Sign "Saruta Cross"
208
+ - Wind God "Wind God's Leaf-Veiling"
209
+ - Wind God "Tengu's Fall Wind"
210
+ - Wind God "Storm Day"
211
+ - "Illusionary Dominance"
212
+ - "Peerless Wind God"
213
+ - Blockade Sign "Mountain God's Procession"
214
+ - Blockade Sign "Advent of the Divine Grandson"
215
+ - Blockade Sign "Terukuni Shining Through Heaven and Earth"
216
+ - Esoterica "Gray Thaumaturgy"
217
+ - Esoterica "Forgotten Ritual"
218
+ - Esoterica "Secretly Inherited Art of Danmaku"
219
+ - Miracle "Daytime Guest Stars"
220
+ - Miracle "Night with Bright Guest Stars"
221
+ - Miracle "Night with Overly Bright Guest Stars"
222
+ - Sea Parting "The Day the Sea Split"
223
+ - Sea Parting "Moses' Miracle"
224
+ - Preparation "Star Ritual to Call the Godly Winds"
225
+ - Preparation "Summon Takeminakata"
226
+ - Miracle "God's Wind"
227
+ - Great Miracle "Yasaka's Divine Wind"
228
+ - Divine Festival "Expanded Onbashira"
229
+ - Weird Festival "Medoteko Boisterous Dance"
230
+ - Rice Porridge in Tube "God's Rice Porridge"
231
+ - Forgotten Grain "Unremembered Crop"
232
+ - Divine Grain "Divining Crop"
233
+ - Sacrifice Sign "Misayama Hunting Shrine Ritual"
234
+ - Mystery "Kuzui Clear Water"
235
+ - Mystery "Yamato Torus"
236
+ - Heaven's Stream "Miracle of Otensui"
237
+ - Heaven's Dragon "Source of Rains"
238
+ - "Mountain of Faith"
239
+ - "Divine Virtues of Wind God"
240
+ - God Sign "Beautiful Spring like Suiga"
241
+ - God Sign "Ancient Fate Linked by Cedars"
242
+ - God Sign "Omiwatari that God Walked"
243
+ - Party Start "Two Bows, Two Claps, and One Bow"
244
+ - Native God "Lord Long-Arm and Lord Long-Leg"
245
+ - Divine Tool "Moriya's Iron Ring"
246
+ - Spring Sign "Jade of the Horrid River"
247
+ - Frog Hunt "The Snake Eats the Croaking Frog"
248
+ - Native God "Seven Stones and Seven Trees"
249
+ - Native God "Froggy Braves the Wind and Rain"
250
+ - Native God "Red Frogs of Houei Four"
251
+ - "Suwa War ~ Native Myth vs. Central Myth"
252
+ - Scourge Sign "Mishaguji-sama"
253
+ - Trap Sign "Capture Web"
254
+ - Spider "Cave Spider's Nest"
255
+ - Miasma Sign "Filled Miasma"
256
+ - Miasma "Unexplained Fever"
257
+ - Jealousy Sign "Green-Eyed Monster"
258
+ - Envy "Green-Eyed Invisible Monster"
259
+ - Grandpa Hanasaka "Jealousy of the Kind & Lovely"
260
+ - Grandpa Hanasaka "Shiro's Ashes"
261
+ - Tongue-Cut Sparrow "Hate for the Humble & Rich"
262
+ - Tongue-Cut Sparrow "Large Box & Small Box"
263
+ - Malice Sign "Shrine Visit in the Dead of Night"
264
+ - Malice Sign "Day 7 of the Shrine Visits in the Dead of Night"
265
+ - Oni Sign "Anomalies, Strength, Disorder, & Spirits"
266
+ - Mysterious Ring "Hell's Wheel of Pain"
267
+ - Shackles Sign "Shackles a Criminal Can't Take Off"
268
+ - Feat of Strength "Storm on Mt. Ooe"
269
+ - Feat of Strength "Wind Blowing Down from Mt. Ooe"
270
+ - Big Four Arcanum "Knock Out In Three Steps"
271
+ - Recollection "Terrible Souvenir"
272
+ - Recollection "Terrifying Hypnotism"
273
+ - Recollection "Double Black Death Butterfly"
274
+ - Recollection "Flying Insect's Nest"
275
+ - Recollection "Border of Wave & Particle"
276
+ - Recollection "Mt. Togakushi Toss"
277
+ - Recollection "Night Parade of a Million Demons"
278
+ - Recollection "Deep Fog Labyrinth"
279
+ - Recollection "Wind God's Leaf-Veiling"
280
+ - Recollection "Tengu's Macroburst"
281
+ - Recollection "Torii Whorl-Wind"
282
+ - Recollection "Spring Kyoto Dolls"
283
+ - Recollection "Straw Doll Kamikaze"
284
+ - Recollection "Return Inanimateness"
285
+ - Recollection "Mercury Poison"
286
+ - Recollection "Princess Undine"
287
+ - Recollection "Philosopher's Stone"
288
+ - Recollection "Extending Arm"
289
+ - Recollection "Kappa's Pororoca"
290
+ - Recollection "Trauma in the Glimmering Depths"
291
+ - Cat Sign "Cat's Walk"
292
+ - Cat Sign "Vengeful Cat Spirit's Erratic Step"
293
+ - Cursed Sprite "Zombie Fairy"
294
+ - Cursed Sprite "Vengeful Spirit: Possessed Fairy"
295
+ - Malicious Spirit "Spleen Eater"
296
+ - Corpse Spirit "Vengeful Cannibal Spirit"
297
+ - Atonement "Needle Mountain of a Former Hell"
298
+ - Atonement "The Needles of Yore & the Vengeful Spirits in Pain"
299
+ - "Rekindling of Dead Ashes"
300
+ - "Small Demon's Revival"
301
+ - Youkai "Blazing Wheel"
302
+ - Atomic Fire "Nuclear Fusion"
303
+ - Atomic Fire "Nuclear Excursion"
304
+ - Atomic Fire "Uncontainable Nuclear Reaction"
305
+ - Explosion Sign "Petit Flare"
306
+ - Explosion Sign "Mega Flare"
307
+ - Explosion Sign "Giga Flare"
308
+ - Explosion Sign "Peta Flare"
309
+ - Blazing Star "Fixed Star"
310
+ - Blazing Star "Planetary Revolution"
311
+ - Blazing Star "Ten Evil Stars"
312
+ - "Hell & Heaven Meltdown"
313
+ - "Hell's Tokamak"
314
+ - "Hell's Artificial Sun"
315
+ - "Subterranean Sun"
316
+ - Esoterica "Nine Syllable Stabs"
317
+ - Miracle "Miracle Fruit"
318
+ - Divine Virtue "Bumper Crop Rice Shower"
319
+ - Image "All Ancestors Standing Beside Your Bed"
320
+ - Image "Danmaku Paranoia"
321
+ - Instinct "Release of the Id"
322
+ - Suppression "Super-Ego"
323
+ - Response "Youkai Polygraph"
324
+ - Unconscious "Rorschach in Danmaku"
325
+ - Rekindled "The Embers of Love"
326
+ - Depths "Genetics of the Unconscious"
327
+ - "Philosophy of a Hated Person"
328
+ - "Subterranean Rose"
329
+ - Rod Sign "Busy Rod"
330
+ - Search Sign "Rare Metal Detector"
331
+ - Search Sign "Gold Detector"
332
+ - Vision Sign "Nazrin Pendulum"
333
+ - Vision Sign "High Sensitivity Nazrin Pendulum"
334
+ - Defense Sign "Pendulum Guard"
335
+ - Large Ring "Umbrella Halo"
336
+ - Large Ring "Hello Forgotten World"
337
+ - Umbrella Sign "Parasol Star Symphony"
338
+ - Umbrella Sign "Parasol Star Memories"
339
+ - Rain Sign "A Rainy Night's Ghost Story"
340
+ - Umbrella "Super Water-Repelling Bone-Dry Monster"
341
+ - Monster Sign "A Forgotten Umbrella's Night Train"
342
+ - Monster Train "Spare Umbrella Express Night Carnival"
343
+ - Iron Fist "An Unarguable Youkai Punch"
344
+ - Divine Fist "Hell Thrust from Above the Clouds"
345
+ - Divine Fist "Hell Thrust from the Heavenly Seas"
346
+ - Fist Sign "Heavenly Net Sandbag"
347
+ - Barrage "Cloud World Kraken Strike"
348
+ - Barrage "King Kraken Strike"
349
+ - Hand Strike "Fist Smash"
350
+ - Annihilation "Consecutive Hooks Throughout Heaven & Earth"
351
+ - Thunderous Yell "A Scolding from a Traditional Old Man"
352
+ - Rage "Calamity Scolding Scorch"
353
+ - Rage "First & Last of Its Kind Scolding Scorch"
354
+ - Capsize "Dragging Anchor"
355
+ - Capsize "Foundering Anchor"
356
+ - Capsize "Sinking Anchor"
357
+ - Drowning Sign "Deep Vortex"
358
+ - Drowning Sign "Sinkable Vortex"
359
+ - Harbor Sign "Phantom Ship Harbor"
360
+ - Harbor Sign "Phantom Ship's Port"
361
+ - Harbor Sign "Eternally Anchored Phantom Ship"
362
+ - Phantom "Sinker Ghost"
363
+ - Phantom "Dipper Creeping Close"
364
+ - Jeweled Pagoda "Greatest Treasure"
365
+ - Jeweled Pagoda "Radiant Treasure"
366
+ - Jeweled Pagoda "Radiant Treasure Gun"
367
+ - Light Sign "Absolute Justice"
368
+ - Light Sign "Aura of Justice"
369
+ - Buddhist Art "Most Valuable Vajra"
370
+ - Buddha's Light "Vajra of Perfect Buddhism"
371
+ - Light Sign "Demon of Purification"
372
+ - "Complete Clarification"
373
+ - Magic "Omen of Purple Clouds"
374
+ - Good Omen "Cloudy Way in Purple"
375
+ - Good Omen "Nirvana's Cloudy Way in Purple"
376
+ - Magic "Mystic Fragrance of a Makai Butterfly"
377
+ - Magic "Magic Butterfly"
378
+ - Light Magic "Star Maelstrom"
379
+ - Light Magic "Magic Milky Way"
380
+ - Great Magic "Devil's Recitation"
381
+ - "Amagimi Hijiri's Air Scroll"
382
+ - Superhuman "Byakuren Hijiri"
383
+ - Flying Bowls "Flying Fantastica"
384
+ - Flying Bowls "Legendary Flying Saucers"
385
+ - Umbrella Sign "Lightly Falling Large Raindrops"
386
+ - Surprising Rain "Guerrilla Typhoon"
387
+ - Halo "Karakasa Surprising Flash"
388
+ - Ominous Clouds "Heian Dark Clouds"
389
+ - Unidentified "Red UFO Invasion of Rage"
390
+ - Nue Sign "Mysterious Snake Show"
391
+ - Unidentified "Blue UFO Invasion of Grief"
392
+ - Nue Sign "Danmaku Chimera"
393
+ - Unidentified "Green UFO Invasion of Justice"
394
+ - Nue Sign "Undefined Darkness"
395
+ - Unidentified "Rainbow UFO Invasion of Terror"
396
+ - "Nightmare of Heiankyou"
397
+ - Grudge Bow "The Bow of Genzanmi Yorimasa"
398
+ - Symbol "Dance of the Dead Butterflies"
399
+ - Symbol "Dance of the Dead Butterflies - Cherry Blossoms -"
400
+ - Ghostly Butterfly "Ghost Spot"
401
+ - Ghostly Butterfly "Ghost Spot - Cherry Blossoms -"
402
+ - Nether Sign "Endless Evening Cherry Blossoms"
403
+ - Cherry Blossom Sign "Saigyou Cherry Blossom Blizzard"
404
+ - Echo Sign "Mountain Echo"
405
+ - Echo Sign "Mountain Echo Scramble"
406
+ - Echo Sign "Power Resonance"
407
+ - Mountain Echo "Long-Range Echo"
408
+ - Mountain Echo "Amplify Echo"
409
+ - Great Voice "Charged Cry"
410
+ - Great Voice "Charged Yahoo!"
411
+ - Rainbow Sign "Umbrella Cyclone"
412
+ - Recovery "Heal By Desire"
413
+ - Poison Nail "Poison Raze"
414
+ - Poison Nail "Poison Murder"
415
+ - Desire Sign "Saved Up Desire Spirit Invitation"
416
+ - Desire Spirit "Score Desire Eater"
417
+ - Evil Sign "Yǎng Xiǎoguǐ"
418
+ - Evil Sign "Gūhún Yěguǐ"
419
+ - Demonify "Zǒuhuǒ Rùmó"
420
+ - Possession "Corpse Tóngjī"
421
+ - Spirit Link "Tōnglíng Yoshika"
422
+ - Taoist Sign "Tao Fetal Movement"
423
+ - Thunder Arrow "Gagouji's Cyclone"
424
+ - Thunder Arrow "Gagouji's Tornado"
425
+ - Heaven Sign "Rainy Iwafune"
426
+ - Heaven Sign "Ame-no-Iwafune, Ascend to Heaven"
427
+ - Throwing Dishes "Mononobe's Eighty Saké Cups"
428
+ - Blaze Sign "Blazing Winds of Haibutsu"
429
+ - Blaze Sign "Sakurai-ji in Flames"
430
+ - Saint Girl "Oomonoimi's Dinner"
431
+ - Honor "Colors of Twelve Levels"
432
+ - Honor "Ranks of Twelve Levels"
433
+ - Hermit Sign "Taoist of the Land of the Rising Sun"
434
+ - Hermit Sign "Emperor of the Land of the Rising Sun"
435
+ - Summon "Royal Clan's Chaotic Dance"
436
+ - Secret Treasure "Armillary Sphere of Ikaruga-dera"
437
+ - Secret Treasure "Prince Shotoku's Out-of-Place Artifact"
438
+ - Light Sign "Halo of the Guse Kannon"
439
+ - Light Sign "Guse Flash"
440
+ - Discernment "Lasers of Seventeen Articles"
441
+ - Divine Light "Honor the Avoidance of Defiance"
442
+ - "Falling Stars on Divine Spirit Mausoleum"
443
+ - "Newborn Divine Spirits"
444
+ - Unknown "Will-o'-wisps in Unknown Orbit"
445
+ - Unknown "Skyfish with Unknown Shape"
446
+ - Unknown "Youkai Orb of Unknown Mechanics"
447
+ - First Duel "Primate Danmaku Transformation"
448
+ - Second Duel "Carnivorous Danmaku Transformation"
449
+ - Third Duel "Avian Danmaku Transformation"
450
+ - Fourth Duel "Amphibian Danmaku Transformation"
451
+ - Fifth Duel "Scrolls of Frolicking Animals"
452
+ - Sixth Duel "Tanuki's Monstrous School"
453
+ - Seventh Duel "Wild Deserted Island"
454
+ - Transformation "Pseudo-Exorcism of the Stupid Shrine Maiden"
455
+ - "Mamizou Danmaku in Ten Transformations"
456
+ - Raccoon Sign "Full Moon Pompokolin"
457
+ - Cherry Blossom Sign "Cherry Blossom Blizzard Hell"
458
+ - Mountain Echo "Yamabiko's Specialty Echo Demonstration"
459
+ - Poison Nail "Undead Murderer"
460
+ - Taoist Sign "TAO Fetal Movement ~Dao~"
461
+ - Vengeful Spirit "Iruka's Thunder"
462
+ - Saint Girl "Sun Goddess's Sacrifice"
463
+ - "Divine Spirits' Universe"
464
+ - "Wild Carpet"
465
+ - Ice Sign "Ultimate Blizzard"
466
+ - Water Sign "Tail Fin Slap"
467
+ - Scale Sign "Scale Wave"
468
+ - Scale Sign "Raging Waves of the Reversed Scale"
469
+ - Scale Sign "Great Raging Waves of the Reversed Scale"
470
+ - Flight Sign "Flying Head"
471
+ - Neck Sign "Close-Eye Shot"
472
+ - Neck Sign "Rokurokubi Flight"
473
+ - Flying Head "Multiplicative Head"
474
+ - Flying Head "Seventh Head"
475
+ - Flying Head "Ninth Head"
476
+ - Flying Head "Dullahan Night"
477
+ - Fang Sign "Moonlit Canine Teeth"
478
+ - Transformation "Triangle Fang"
479
+ - Transformation "Star Fang"
480
+ - Roar "Strange Roar"
481
+ - Roar "Full Moon Howling"
482
+ - Wolf Sign "Star Ring Pounce"
483
+ - Sirius "High-Speed Pounce"
484
+ - Heikyoku "Sounds of Jetavana's Bell"
485
+ - Vengeful Spirit "Hoichi the Earless"
486
+ - Vengeful Spirit "Great Vengeful Spirit of Taira"
487
+ - Music Sign "Wicked Musical Score"
488
+ - Music Sign "Malicious Musical Score"
489
+ - Music Sign "Double Score"
490
+ - Koto Sign "Sounds of Anicca's Koto"
491
+ - Echo Sign "Heian's Reverberation"
492
+ - Echo Sign "Echo Chamber"
493
+ - Koto Music "Social Upheaval Koto Music Complement"
494
+ - Koto Music "Social Upheaval Requiem"
495
+ - Deceit Sign "Reverse Needle Attack"
496
+ - Reverse Sign "Danmaku Through the Looking-Glass"
497
+ - Reverse Sign "Evil in the Mirror"
498
+ - Reverse Sign "This Side Down"
499
+ - Reverse Sign "Overturning All Under Heaven"
500
+ - Reverse Bow "Dream Bow of Heaven & Earth"
501
+ - Reverse Bow "Decree of the Dream Bow of Heaven & Earth"
502
+ - Turnabout "Reverse Hierarchy"
503
+ - Turnabout "Change Air Brave"
504
+ - Small Bullet "Inchling's Path"
505
+ - Small Bullet "Inchling's Thorny Path"
506
+ - Mallet "Grow Bigger!"
507
+ - Mallet "Grow Even Bigger!"
508
+ - Bewitched Sword "Shining Needle Sword"
509
+ - Mallet "You Grow Bigger!"
510
+ - "Attack on Dwarf"
511
+ - "Wall of Issun"
512
+ - "Hop-o'-My-Thumb Seven"
513
+ - "The Seven Issun-Boshi"
514
+ - String Music "Storm Ensemble"
515
+ - String Music "Joururi World"
516
+ - First Drum "Raging Temple Taiko"
517
+ - Second Drum "Vengeful Spirit Aya-no-Tsuzumi"
518
+ - Third Drum "Three Strikes at Midnight"
519
+ - Death Drum "Land Percuss"
520
+ - Fifth Drum "Den-Den Daiko"
521
+ - Sixth Drum "Alternate Sticking"
522
+ - Seventh Drum "High Speed Taiko Rocket"
523
+ - Eighth Drum "Thunder God's Anger"
524
+ - "Blue Lady Show"
525
+ - "Pristine Beat"
526
+ - Evil Bullet "Speed Strike"
527
+ - Bullet Sign "Eagle Shooting"
528
+ - Bullet Sign "The Eagle Has Shot Its Target"
529
+ - Gun Sign "Lunatic Gun"
530
+ - Gun Sign "Lunatic Gun"
531
+ - Rabbit Sign "Strawberry Dango"
532
+ - Rabbit Sign "Berry Berry Dango"
533
+ - Rabbit Sign "Dango Influence"
534
+ - Moon-Viewing "September Full Moon"
535
+ - Moon-Viewing Saké "Lunatic September"
536
+ - Dream Sign "Scarlet Nightmare"
537
+ - Dream Sign "Scarlet Oppressive Nightmare"
538
+ - Dream Sign "Indigo Dream of Anxiety"
539
+ - Dream Sign "Indigo Three-Layered Dream of Anxiety"
540
+ - Dream Sign "Eternally Anxious Dream"
541
+ - Dream Sign "Ochre Confusion"
542
+ - Dream Sign "Ochre Labyrinthine Confusion"
543
+ - Dream Sign "Dream Catcher"
544
+ - Dream Sign "Azure Dream Catcher"
545
+ - Dream Sign "Losing Oneself in a Dream"
546
+ - Moon Sign "Ultramarine Lunatic Dream"
547
+ - Orb Sign "Disorderly Flock's Curse"
548
+ - Orb Sign "Disorderly Flock's Reverse Curse"
549
+ - Orb Sign "Disorderly Flock's Duplex Curse"
550
+ - Orb Sign "Impure Body Detection Mines"
551
+ - Orb Sign "Impure Body Detection Mines V2"
552
+ - Orb Sign "Shotgun Coronation of the Gods"
553
+ - Orb Sign "Shining Shotgun Coronation of the Gods"
554
+ - "One-Winged White Heron"
555
+ - Hell Sign "Hell Eclipse"
556
+ - Hell Sign "Eclipse of Hell"
557
+ - Hell Sign "Flash and Stripe"
558
+ - Hell Sign "Star and Stripe"
559
+ - Hellfire "Graze Inferno"
560
+ - Hellfire "Infernal Essence of Grazing"
561
+ - Inferno "Striped Abyss"
562
+ - "Fake Apollo"
563
+ - "Apollo Hoax Theory"
564
+ - "Pure Light of the Palm"
565
+ - "Murderous Lilies"
566
+ - "Primordial Divine Spirit World"
567
+ - "Modern Divine Spirit World"
568
+ - "Trembling, Shivering Star"
569
+ - "Pristine Lunacy"
570
+ - "Overflowing Blemishes"
571
+ - "Refinement of Earthen Impurity"
572
+ - Pure Sign "Purely Bullet Hell"
573
+ - Pure Sign "A Pristine Danmaku Hell"
574
+ - Butterfly "Butterfly Supplantation"
575
+ - Super-Express "Dream Express"
576
+ - Crawling Dream "Creeping Bullet"
577
+ - Otherworld "Ōmagatoki"
578
+ - Earth "Impurity Within One's Body"
579
+ - Moon "Apollo Reflection Mirror"
580
+ - "Simple Danmaku for Cornering a Trapped Rat"
581
+ - Otherworld "Hell's Non-Ideal Danmaku"
582
+ - Earth "Rain Falling in Hell"
583
+ - Moon "Lunatic Impact"
584
+ - "Pristine Danmaku for Killing a Person"
585
+ - "Trinitarian Rhapsody"
586
+ - "First and Last Nameless Danmaku"
587
+ - Butterfly Sign "Minute Scales"
588
+ - Butterfly Sign "Swallowtail's Scales"
589
+ - Butterfly Sign "Fluttering Summer"
590
+ - Butterfly Sign "Midsummer Wingbeats"
591
+ - Rain Sign "Imprisoning Autumn Rain"
592
+ - Rain Sign "Cursed Torrential Rain"
593
+ - Blade Sign "Yamanba's Kitchen Knife Sharpening"
594
+ - Blade Sign "Yamanba's Oni Kitchen Knife Sharpening"
595
+ - Blade Exhaustion Sign "Mountain Murder"
596
+ - Blade Exhaustion Sign "Bloody Mountain Murder"
597
+ - Spring Sign "Surprise Spring"
598
+ - Dog Sign "Stray Dog's Walk"
599
+ - Hound Sign "Mountain Hound's Walk"
600
+ - Spinning Top "Koma-Inu Spin"
601
+ - Spinning Top "Curl Up and Die"
602
+ - Koma Sign "Solitary A-Um Breathing"
603
+ - Magic Sign "Instant Bodhi"
604
+ - Magic Sign "Bodhi in an Instant"
605
+ - Magic Sign "Bullet Golem"
606
+ - Magic Sign "Gigantic Pet Bullet Lifeform"
607
+ - Jizo "Criminal Salvation"
608
+ - Jizo "Hellfire Salvation"
609
+ - Bamboo Sign "Bamboo Spear Dance"
610
+ - Bamboo Sign "Bamboo Crazy Dance"
611
+ - Myōga Ginger "Forget Your Name"
612
+ - Broadleaf Sign "Tanabata Star Festival"
613
+ - Myōga Blessing "Behind You"
614
+ - Dance Sign "Behind Festival"
615
+ - Mad Dance "Tengu-odoshi"
616
+ - Mad Dance "Frenzied Tengu-Frightening"
617
+ - Back Sign "Halo of the Secret God"
618
+ - Back Sign "Halo of the Absolute Secret God"
619
+ - Hidden Summer "Scorch By Hot Summer"
620
+ - Hidden Summer "Scorched Earth of Abnormal Intense Heat"
621
+ - Hidden Fall "Die of Famine"
622
+ - Hidden Fall "Preta of Abnormal Blight"
623
+ - Hidden Winter "Black Snowman"
624
+ - Hidden Winter "Snowman of Abnormal Snowfall"
625
+ - Hidden Spring "April Wizard"
626
+ - Hidden Spring "Black Magician of Abnormal Falling Petals"
627
+ - "Hidden Breezy Cherry Blossom"
628
+ - "Hidden Perfect Summer Ice"
629
+ - "Hidden Crazy Fall Wind"
630
+ - "Hidden Extreme Winter"
631
+ - Drum Dance "Powerful Cheers"
632
+ - Mad Dance "Crazy Backup Dance"
633
+ - Bullet Dance "Twin Typhoons"
634
+ - Secret Ceremony "Reverse Invoker"
635
+ - Secret Ceremony "Rear Shots of Betrayal"
636
+ - Secret Ceremony "Danmaku Dupion"
637
+ - Secret Ceremony "Fire of Ena"
638
+ - Secret Ceremony "Kyōgen of the Back Door"
639
+ - Secret Ceremony "Matarah Dukkha"
640
+ - Secret Ceremony "Sword of the Seven Stars"
641
+ - Secret Ceremony "Performers Unattached to Society"
642
+ - "The Back Face's Dark Sarugaku"
643
+ - "Anarchy Bullet Hell"
644
+ - Stone Sign "Stone Woods"
645
+ - Stone Sign "Stone Conifers"
646
+ - Stone Sign "Children's Limbo"
647
+ - Stone Sign "Adult Children's Limbo"
648
+ - Stone Sign "Stone Baby"
649
+ - Stone Sign "Heavy Stone Baby"
650
+ - Drowning Sign "Drowning in the Sanzu"
651
+ - Oni Sign "Demon Siege"
652
+ - Oni Sign "Hungry Demon Siege"
653
+ - Water Sign "Ordeal of Water Distribution"
654
+ - Water Sign "High-Level Purgatordeal of Water Distribution"
655
+ - Water Sign "Ultimate Purgatordeal of Water Distribution"
656
+ - Light Sign "Ordeal of Surveying"
657
+ - Light Sign "High-Level Purgatordeal of Surveying"
658
+ - Light Sign "Ultimate Purgatordeal of Surveying"
659
+ - Oni Sign "Purgatordeal of Oniwatari"
660
+ - Oni Sign "Hell-Level Purgatordeal of Oniwatari"
661
+ - Tortoise Sign "Tortoiseshell Hell"
662
+ - Oni Sign "Beasts Attacking from the Rear"
663
+ - Oni Sign "Mangy Beasts Attacking from the Rear"
664
+ - Oni Sign "Devilish Beasts Attacking from the Rear"
665
+ - Dragon Sign "Dragon Crest Bullets"
666
+ - Haniwa "Archer Haniwa"
667
+ - Haniwa "Skilled Archer Haniwa"
668
+ - Haniwa "Fencer Haniwa"
669
+ - Haniwa "Skilled Fencer Haniwa"
670
+ - Haniwa "Cavalry Haniwa"
671
+ - Haniwa "Skilled Cavalry Haniwa"
672
+ - Haniwa "Hollow Inexhaustible Troops"
673
+ - Haniwa "Undefeated Inexhaustible Troops"
674
+ - Square Shape "Square-Shaped Sculpting Art"
675
+ - Square Shape "Square Creature"
676
+ - Circular Shape "Perfect Circle Sculpting Art"
677
+ - Circular Shape "Circle Creature"
678
+ - Linear Shape "Line-Shaped Sculpting Art"
679
+ - Linear Shape "Linear Creature"
680
+ - Haniwa "Horse-and-Rider Idol Sculpting Art"
681
+ - Haniwa "Idol Creature"
682
+ - "Oni-Shaped Sculpting Art"
683
+ - "Geometric Creature"
684
+ - "Idola Diabolus"
685
+ - Bloody Battle "Watershed of Blood"
686
+ - Bloody Battle "Hell Realm Sight-Line"
687
+ - Bloody Battle "All-Spirit Oniwatari"
688
+ - Agile Skill "Thrilling Shot"
689
+ - Agile Skill "Lightning Neigh"
690
+ - Agile Skill "Dense Crowd"
691
+ - Agile Skill "Beast Epidemicity"
692
+ - Agile Skill "Triangle Chase"
693
+ - Agile Skill "Black Pegasus Meteor Shot"
694
+ - Agile Skill "Muscle Explosion"
695
+ - "Follow Me, Unafraid"
696
+ - "Oni-Shaped Hoi Polloi"
697
+ - "Deeds of Devilish Beasts"
698
+ locations:
699
+ - Abandon Pond
700
+ - Animal Realm
701
+ - Bamboo Forest of the Lost
702
+ - Barrier of Life & Death
703
+ - Canal of Willows
704
+ - Deep Road to Hell
705
+ - Dream World
706
+ - Eientei
707
+ - Forest of Magic
708
+ - Former Hell
709
+ - Garden of the Sun
710
+ - Geidontei
711
+ - Genbu Ravine
712
+ - Gensokyo
713
+ - Giant Toad's Pond
714
+ - Hakugyokurou
715
+ - Hakurei Shrine
716
+ - Hall of Dreams' Great Mausoleum
717
+ - Heaven
718
+ - Higan
719
+ - Hokkai
720
+ - Hot Spring Town
721
+ - Human Village
722
+ - Kourindou
723
+ - Land of the Back Door
724
+ - Lunar Capital
725
+ - Makai
726
+ - Mayohiga
727
+ - Misty Lake
728
+ - Moriya Shrine
729
+ - Muenzuka
730
+ - Myouren Temple
731
+ - Nameless Hill
732
+ - Netherworld
733
+ - Nuclear Furnace
734
+ - Outside World
735
+ - Palace of the Earth Spirits
736
+ - Phantom Meadow
737
+ - Primate Spirit Garden
738
+ - Rainbow Cavern of Earth Spirits
739
+ - Remains of Blazing Hell
740
+ - Road of Liminality
741
+ - Road of Lingering Snow
742
+ - Road of Reconsideration
743
+ - Sanzu River
744
+ - Scarlet Devil Mansion
745
+ - Sea of Tranquility
746
+ - Senkai
747
+ - Shining Needle Castle
748
+ - Suzunaan
749
+ - The Great Youkai Forest
750
+ - TORIFUNE
751
+ - Underground Geyser Center
752
+ - Underworld
753
+ - Untrodden Valley
754
+ - Waterfall of Nine Heavens
755
+ - Wind God's Lake
756
+ - Youkai Mountain
757
+ songs:
758
+ - Welcome to the Moon Tour
759
+ - Greenwich in the Sky
760
+ - Sleepless Night of the Eastern Country
761
+ - The Wheelchair's Future in Space
762
+ - Demystify Feast
763
+ - Satellite Café Terrace
764
+ - G Free
765
+ - Celestial Wizardry ~ Magical Astronomy
766
+ - Necrofantasia
767
+ - The Far Side of the Moon
768
+ - Sealed Gods
769
+ - A God That Misses People ~ Romantic Fall
770
+ - Because Princess Inada Is Scolding Me
771
+ - The Road of the Misfortune God ~ Dark Road
772
+ - Dark Side of Fate
773
+ - The Gensokyo the Gods Loved
774
+ - Akutagawa Ryuunosuke's "Kappa" ~ Candid Friend
775
+ - Fall of Fall ~ Autumnal Waterfall
776
+ - Youkai Mountain ~ Mysterious Mountain
777
+ - The Primal Scene of Japan the Girl Saw
778
+ - Faith Is for the Transient People
779
+ - Cemetery of Onbashira ~ Grave of Being
780
+ - The Venerable Ancient Battlefield ~ Suwa Foughten Field
781
+ - Tomorrow Will Be Special, Yesterday Was Not
782
+ - Native Faith
783
+ - Shrine at the Foot of the Mountain
784
+ - The Gods Give Us Blessed Rain ~ Sylphid Dream
785
+ - Eternal Night Vignette ~ Eastern Night
786
+ - Illusionary Night ~ Ghostly Eyes
787
+ - Stirring an Autumn Moon ~ Mooned Insect
788
+ - Song of the Night Sparrow ~ Night Bird
789
+ - Deaf to All but the Song
790
+ - Nostalgic Blood of the East ~ Old World
791
+ - Plain Asia
792
+ - Retribution for the Eternal Night ~ Imperishable Night
793
+ - Maiden's Capriccio ~ Dream Battle
794
+ - Love-Colored Master Spark
795
+ - Cinderella Cage ~ Kagome-Kagome
796
+ - Lunatic Eyes ~ Invisible Full Moon
797
+ - Voyage 1969
798
+ - Gensokyo Millennium ~ History of the Moon
799
+ - Flight of the Bamboo Cutter ~ Lunatic Princess
800
+ - Voyage 1970
801
+ - Extend Ash ~ Person of Hourai
802
+ - Reach for the Moon, Immortal Smoke
803
+ - Evening Primrose
804
+ - Eternal Dream ~ Mystical Maple
805
+ - Eastern Youkai Beauty
806
+ - Spirit of Avarice
807
+ - Night Sakura of Dead Spirits
808
+ - Ghost Lead
809
+ - Welcome to Youkai Temple
810
+ - Youkai Girl at the Gate
811
+ - Let’s Live in a Lovely Cemetery
812
+ - Rigid Paradise
813
+ - Desire Drive
814
+ - Old Yuanxian
815
+ - The Hall of Dreams' Great Mausoleum
816
+ - Omiwa Legend
817
+ - Starry Sky of Small Desires
818
+ - Shoutoku Legend ~ True Administrator
819
+ - Youkai Back Shrine Road
820
+ - Futatsuiwa from Sado
821
+ - A New Wind at the Shrine
822
+ - Desire Dream
823
+ - Silent Beast Spirits
824
+ - The Lamentations Known Only by Jizo
825
+ - Jelly Stone
826
+ - Lost River
827
+ - The Stone Baby and the Submerged Bovine
828
+ - Everlasting Red Spider Lily
829
+ - Seraphic Chicken
830
+ - Unlocated Hell
831
+ - Tortoise Dragon ~ Fortune and Misfortune
832
+ - Beast Metropolis
833
+ - Joutoujin of Ceramics
834
+ - Electric Heritage
835
+ - Entrust this World to Idols ~ Idolatrize World
836
+ - The Shining Law of the Strong Eating the Weak
837
+ - Prince Shoutoku's Pegasus ~ Dark Pegasus
838
+ - The Animals' Rest
839
+ - Returning Home from the Underground