faker 1.9.1 → 1.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG.md +181 -0
- data/License.txt +2 -2
- data/README.md +252 -162
- data/lib/faker.rb +36 -17
- data/lib/faker/blockchain/bitcoin.rb +34 -0
- data/lib/faker/blockchain/ethereum.rb +16 -0
- data/lib/faker/blockchain/tezos.rb +46 -0
- data/lib/faker/{book.rb → books/book.rb} +2 -0
- data/lib/faker/books/culture_series.rb +34 -0
- data/lib/faker/books/dune.rb +58 -0
- data/lib/faker/books/lovecraft.rb +73 -0
- data/lib/faker/creature/animal.rb +13 -0
- data/lib/faker/creature/cat.rb +23 -0
- data/lib/faker/creature/dog.rb +43 -0
- data/lib/faker/{address.rb → default/address.rb} +10 -0
- data/lib/faker/default/alphanumeric.rb +24 -0
- data/lib/faker/{ancient.rb → default/ancient.rb} +2 -0
- data/lib/faker/{app.rb → default/app.rb} +2 -0
- data/lib/faker/{appliance.rb → default/appliance.rb} +2 -0
- data/lib/faker/{artist.rb → default/artist.rb} +2 -0
- data/lib/faker/{avatar.rb → default/avatar.rb} +3 -0
- data/lib/faker/{bank.rb → default/bank.rb} +8 -2
- data/lib/faker/{beer.rb → default/beer.rb} +2 -0
- data/lib/faker/{boolean.rb → default/boolean.rb} +2 -0
- data/lib/faker/{bossa_nova.rb → default/bossa_nova.rb} +2 -0
- data/lib/faker/{business.rb → default/business.rb} +2 -0
- data/lib/faker/{cannabis.rb → default/cannabis.rb} +0 -1
- data/lib/faker/default/chile_rut.rb +44 -0
- data/lib/faker/{chuck_norris.rb → default/chuck_norris.rb} +2 -0
- data/lib/faker/{code.rb → default/code.rb} +3 -1
- data/lib/faker/{coffee.rb → default/coffee.rb} +2 -0
- data/lib/faker/default/coin.rb +15 -0
- data/lib/faker/{color.rb → default/color.rb} +2 -0
- data/lib/faker/{commerce.rb → default/commerce.rb} +3 -0
- data/lib/faker/{company.rb → default/company.rb} +35 -1
- data/lib/faker/{compass.rb → default/compass.rb} +2 -0
- data/lib/faker/default/construction.rb +29 -0
- data/lib/faker/default/cosmere.rb +48 -0
- data/lib/faker/default/creature.rb +6 -0
- data/lib/faker/{crypto.rb → default/crypto.rb} +2 -0
- data/lib/faker/default/crypto_coin.rb +32 -0
- data/lib/faker/{currency.rb → default/currency.rb} +2 -0
- data/lib/faker/{date.rb → default/date.rb} +3 -0
- data/lib/faker/default/dc_comics.rb +25 -0
- data/lib/faker/{demographic.rb → default/demographic.rb} +2 -0
- data/lib/faker/{dessert.rb → default/dessert.rb} +2 -0
- data/lib/faker/{device.rb → default/device.rb} +2 -0
- data/lib/faker/default/driving_licence.rb +59 -0
- data/lib/faker/default/educator.rb +38 -0
- data/lib/faker/{electrical_components.rb → default/electrical_components.rb} +2 -0
- data/lib/faker/{esport.rb → default/esport.rb} +2 -0
- data/lib/faker/{file.rb → default/file.rb} +2 -0
- data/lib/faker/{fillmurray.rb → default/fillmurray.rb} +2 -0
- data/lib/faker/{finance.rb → default/finance.rb} +13 -0
- data/lib/faker/{food.rb → default/food.rb} +4 -0
- data/lib/faker/{football.rb → default/football.rb} +6 -0
- data/lib/faker/{funny_name.rb → default/funny_name.rb} +3 -1
- data/lib/faker/default/games.rb +6 -0
- data/lib/faker/{gender.rb → default/gender.rb} +2 -0
- data/lib/faker/{greek_philosophers.rb → default/greek_philosophers.rb} +2 -0
- data/lib/faker/{hacker.rb → default/hacker.rb} +2 -0
- data/lib/faker/{hipster.rb → default/hipster.rb} +3 -12
- data/lib/faker/default/house.rb +15 -0
- data/lib/faker/default/id_number.rb +119 -0
- data/lib/faker/default/industry_segments.rb +25 -0
- data/lib/faker/{internet.rb → default/internet.rb} +10 -6
- data/lib/faker/{invoice.rb → default/invoice.rb} +3 -1
- data/lib/faker/default/japanese_media.rb +6 -0
- data/lib/faker/{job.rb → default/job.rb} +2 -0
- data/lib/faker/default/json.rb +70 -0
- data/lib/faker/{kpop.rb → default/kpop.rb} +2 -0
- data/lib/faker/{lorem.rb → default/lorem.rb} +5 -17
- data/lib/faker/{lorem_flickr.rb → default/lorem_flickr.rb} +2 -0
- data/lib/faker/{lorem_pixel.rb → default/lorem_pixel.rb} +2 -0
- data/lib/faker/{markdown.rb → default/markdown.rb} +6 -2
- data/lib/faker/default/marketing.rb +13 -0
- data/lib/faker/{measurement.rb → default/measurement.rb} +4 -2
- data/lib/faker/{military.rb → default/military.rb} +2 -0
- data/lib/faker/default/movies.rb +6 -0
- data/lib/faker/{name.rb → default/name.rb} +7 -11
- data/lib/faker/{nation.rb → default/nation.rb} +9 -0
- data/lib/faker/{nato_phonetic_alphabet.rb → default/nato_phonetic_alphabet.rb} +2 -0
- data/lib/faker/default/nhs.rb +34 -0
- data/lib/faker/{number.rb → default/number.rb} +13 -2
- data/lib/faker/{omniauth.rb → default/omniauth.rb} +2 -0
- data/lib/faker/{phone_number.rb → default/phone_number.rb} +14 -0
- data/lib/faker/{placeholdit.rb → default/placeholdit.rb} +4 -2
- data/lib/faker/{programming_language.rb → default/programming_language.rb} +2 -0
- data/lib/faker/default/relationship.rb +42 -0
- data/lib/faker/default/restaurant.rb +11 -0
- data/lib/faker/{science.rb → default/science.rb} +2 -0
- data/lib/faker/{slack_emoji.rb → default/slack_emoji.rb} +2 -0
- data/lib/faker/{source.rb → default/source.rb} +2 -0
- data/lib/faker/default/south_africa.rb +51 -0
- data/lib/faker/{space.rb → default/space.rb} +2 -0
- data/lib/faker/{string.rb → default/string.rb} +0 -0
- data/lib/faker/{stripe.rb → default/stripe.rb} +2 -0
- data/lib/faker/default/subscription.rb +25 -0
- data/lib/faker/{superhero.rb → default/superhero.rb} +2 -0
- data/lib/faker/{team.rb → default/team.rb} +2 -0
- data/lib/faker/{time.rb → default/time.rb} +3 -0
- data/lib/faker/default/tv_shows.rb +6 -0
- data/lib/faker/{twitter.rb → default/twitter.rb} +2 -0
- data/lib/faker/{types.rb → default/types.rb} +5 -15
- data/lib/faker/{university.rb → default/university.rb} +2 -0
- data/lib/faker/default/vehicle.rb +149 -0
- data/lib/faker/{verb.rb → default/verb.rb} +2 -0
- data/lib/faker/{world_cup.rb → default/world_cup.rb} +2 -0
- data/lib/faker/deprecate/aqua_teen_hunger_force.rb +15 -0
- data/lib/faker/deprecate/back_to_the_future.rb +25 -0
- data/lib/faker/deprecate/bitcoin.rb +20 -0
- data/lib/faker/deprecate/bojack_horseman.rb +25 -0
- data/lib/faker/deprecate/breaking_bad.rb +20 -0
- data/lib/faker/deprecate/buffy.rb +35 -0
- data/lib/faker/deprecate/cat.rb +25 -0
- data/lib/faker/deprecate/community.rb +20 -0
- data/lib/faker/deprecate/dog.rb +50 -0
- data/lib/faker/deprecate/dota.rb +35 -0
- data/lib/faker/deprecate/dr_who.rb +45 -0
- data/lib/faker/deprecate/dragon_ball.rb +15 -0
- data/lib/faker/deprecate/dumb_and_dumber.rb +25 -0
- data/lib/faker/deprecate/dune.rb +35 -0
- data/lib/faker/deprecate/elder_scrolls.rb +50 -0
- data/lib/faker/deprecate/ethereum.rb +15 -0
- data/lib/faker/deprecate/fallout.rb +30 -0
- data/lib/faker/deprecate/family_guy.rb +25 -0
- data/lib/faker/deprecate/famous_last_words.rb +15 -0
- data/lib/faker/deprecate/friends.rb +25 -0
- data/lib/faker/deprecate/game_of_thrones.rb +35 -0
- data/lib/faker/deprecate/harry_potter.rb +40 -0
- data/lib/faker/deprecate/heroes_of_the_storm.rb +30 -0
- data/lib/faker/deprecate/hey_arnold.rb +25 -0
- data/lib/faker/deprecate/hitchhikers_guide_to_the_galaxy.rb +44 -0
- data/lib/faker/deprecate/hobbit.rb +30 -0
- data/lib/faker/deprecate/how_i_met_your_mother.rb +30 -0
- data/lib/faker/deprecate/league_of_legends.rb +40 -0
- data/lib/faker/deprecate/lebowski.rb +25 -0
- data/lib/faker/deprecate/lord_of_the_rings.rb +25 -0
- data/lib/faker/deprecate/lovecraft.rb +65 -0
- data/lib/faker/deprecate/matz.rb +15 -0
- data/lib/faker/deprecate/michael_scott.rb +15 -0
- data/lib/faker/deprecate/most_interesting_man_in_the_world.rb +15 -0
- data/lib/faker/deprecate/myst.rb +35 -0
- data/lib/faker/deprecate/new_girl.rb +20 -0
- data/lib/faker/deprecate/one_piece.rb +40 -0
- data/lib/faker/deprecate/overwatch.rb +25 -0
- data/lib/faker/deprecate/parks_and_rec.rb +20 -0
- data/lib/faker/deprecate/pokemon.rb +25 -0
- data/lib/faker/deprecate/princess_bride.rb +20 -0
- data/lib/faker/deprecate/rick_and_morty.rb +25 -0
- data/lib/faker/deprecate/robin.rb +15 -0
- data/lib/faker/deprecate/rock_band.rb +15 -0
- data/lib/faker/deprecate/ru_paul.rb +20 -0
- data/lib/faker/deprecate/seinfeld.rb +25 -0
- data/lib/faker/deprecate/shakespeare.rb +50 -0
- data/lib/faker/deprecate/silicon_valley.rb +50 -0
- data/lib/faker/deprecate/simpsons.rb +25 -0
- data/lib/faker/deprecate/singular_siegler.rb +15 -0
- data/lib/faker/deprecate/south_park.rb +20 -0
- data/lib/faker/deprecate/star_trek.rb +30 -0
- data/lib/faker/deprecate/star_wars.rb +95 -0
- data/lib/faker/deprecate/stargate.rb +25 -0
- data/lib/faker/deprecate/stranger_things.rb +20 -0
- data/lib/faker/deprecate/sword_art_online.rb +30 -0
- data/lib/faker/deprecate/tezos.rb +33 -0
- data/lib/faker/deprecate/the_fresh_prince_of_bel_air.rb +25 -0
- data/lib/faker/deprecate/the_it_crowd.rb +30 -0
- data/lib/faker/deprecate/the_thick_of_it.rb +25 -0
- data/lib/faker/deprecate/twin_peaks.rb +25 -0
- data/lib/faker/deprecate/umphreys_mcgee.rb +15 -0
- data/lib/faker/deprecate/v_for_vendetta.rb +25 -0
- data/lib/faker/deprecate/venture_bros.rb +30 -0
- data/lib/faker/deprecate/witcher.rb +40 -0
- data/lib/faker/deprecate/world_of_warcraft.rb +20 -0
- data/lib/faker/deprecate/yoda.rb +16 -0
- data/lib/faker/deprecate/zelda.rb +30 -0
- data/lib/faker/games/dota.rb +29 -0
- data/lib/faker/games/elder_scrolls.rb +41 -0
- data/lib/faker/games/fallout.rb +25 -0
- data/lib/faker/games/half_life.rb +21 -0
- data/lib/faker/games/heroes.rb +21 -0
- data/lib/faker/games/heroes_of_the_storm.rb +25 -0
- data/lib/faker/games/league_of_legends.rb +33 -0
- data/lib/faker/games/myst.rb +29 -0
- data/lib/faker/games/overwatch.rb +21 -0
- data/lib/faker/games/pokemon.rb +21 -0
- data/lib/faker/games/sonic_the_hedgehog.rb +21 -0
- data/lib/faker/games/super_smash_bros.rb +17 -0
- data/lib/faker/games/witcher.rb +33 -0
- data/lib/faker/games/world_of_warcraft.rb +17 -0
- data/lib/faker/games/zelda.rb +26 -0
- data/lib/faker/japanese_media/dragon_ball.rb +13 -0
- data/lib/faker/japanese_media/one_piece.rb +33 -0
- data/lib/faker/japanese_media/sword_art_online.rb +25 -0
- data/lib/faker/movies/back_to_the_future.rb +21 -0
- data/lib/faker/movies/ghostbusters.rb +21 -0
- data/lib/faker/movies/grateful_dead.rb +17 -0
- data/lib/faker/movies/harry_potter.rb +33 -0
- data/lib/faker/movies/hitchhikers_guide_to_the_galaxy.rb +37 -0
- data/lib/faker/movies/hobbit.rb +25 -0
- data/lib/faker/movies/lebowski.rb +21 -0
- data/lib/faker/movies/lord_of_the_rings.rb +21 -0
- data/lib/faker/{movie.rb → movies/movie.rb} +2 -0
- data/lib/faker/movies/princess_bride.rb +17 -0
- data/lib/faker/movies/star_wars.rb +105 -0
- data/lib/faker/movies/v_for_vendetta.rb +21 -0
- data/lib/faker/{music.rb → music/music.rb} +2 -0
- data/lib/faker/music/phish.rb +13 -0
- data/lib/faker/music/rock_band.rb +13 -0
- data/lib/faker/music/umphreys_mcgee.rb +13 -0
- data/lib/faker/quotes/quote.rb +32 -0
- data/lib/faker/quotes/shakespeare.rb +41 -0
- data/lib/faker/tv_shows/aqua_teen_hunger_force.rb +15 -0
- data/lib/faker/tv_shows/bojack_horseman.rb +23 -0
- data/lib/faker/tv_shows/breaking_bad.rb +19 -0
- data/lib/faker/tv_shows/buffy.rb +31 -0
- data/lib/faker/tv_shows/community.rb +19 -0
- data/lib/faker/tv_shows/dr_who.rb +39 -0
- data/lib/faker/tv_shows/dumb_and_dumber.rb +23 -0
- data/lib/faker/tv_shows/family_guy.rb +23 -0
- data/lib/faker/tv_shows/friends.rb +23 -0
- data/lib/faker/tv_shows/game_of_thrones.rb +31 -0
- data/lib/faker/tv_shows/hey_arnold.rb +23 -0
- data/lib/faker/tv_shows/how_i_met_your_mother.rb +27 -0
- data/lib/faker/tv_shows/michael_scott.rb +13 -0
- data/lib/faker/tv_shows/new_girl.rb +19 -0
- data/lib/faker/tv_shows/parks_and_rec.rb +19 -0
- data/lib/faker/tv_shows/rick_and_morty.rb +23 -0
- data/lib/faker/tv_shows/ru_paul.rb +19 -0
- data/lib/faker/tv_shows/seinfeld.rb +23 -0
- data/lib/faker/tv_shows/silicon_valley.rb +43 -0
- data/lib/faker/tv_shows/simpsons.rb +23 -0
- data/lib/faker/tv_shows/south_park.rb +19 -0
- data/lib/faker/tv_shows/star_trek.rb +27 -0
- data/lib/faker/tv_shows/stargate.rb +23 -0
- data/lib/faker/tv_shows/stranger_things.rb +19 -0
- data/lib/faker/tv_shows/the_expanse.rb +27 -0
- data/lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb +23 -0
- data/lib/faker/tv_shows/the_it_crowd.rb +27 -0
- data/lib/faker/tv_shows/the_thick_of_it.rb +23 -0
- data/lib/faker/tv_shows/twin_peaks.rb +23 -0
- data/lib/faker/tv_shows/venture_bros.rb +27 -0
- data/lib/faker/version.rb +3 -1
- data/lib/helpers/base58.rb +22 -0
- data/lib/helpers/char.rb +2 -0
- data/lib/helpers/i18n_backend.rb +10 -0
- data/lib/helpers/unique_generator.rb +19 -1
- data/lib/locales/README.md +8 -9
- data/lib/locales/ar.yml +102 -0
- data/lib/locales/arm.yml +371 -0
- data/lib/locales/bg.yml +3 -0
- data/lib/locales/ca.yml +6 -0
- data/lib/locales/da-DK.yml +6 -3
- data/lib/locales/de-AT.yml +6 -0
- data/lib/locales/de.yml +10 -3
- data/lib/locales/ee.yml +3 -1
- data/lib/locales/en-AU.yml +2 -0
- data/lib/locales/en-IND.yml +2 -0
- data/lib/locales/en-MS.yml +6 -0
- data/lib/locales/en-NEP.yml +2 -2
- data/lib/locales/en-NG.yml +2 -0
- data/lib/locales/en-NZ.yml +2 -6
- data/lib/locales/en-PAK.yml +2 -1
- data/lib/locales/en-SG.yml +4 -0
- data/lib/locales/en-ZA.yml +114 -17
- data/lib/locales/en.yml +0 -1
- data/lib/locales/en/address.yml +496 -1
- data/lib/locales/en/animal.yml +6 -0
- data/lib/locales/en/beer.yml +2 -1
- data/lib/locales/en/bojack_horseman.yml +2 -2
- data/lib/locales/en/buffy.yml +260 -0
- data/lib/locales/en/cat.yml +5 -4
- data/lib/locales/en/coin.yml +6 -0
- data/lib/locales/en/company.yml +1 -1
- data/lib/locales/en/construction.yml +425 -0
- data/lib/locales/en/cosmere.yml +57 -0
- data/lib/locales/en/crypto_coin.yml +9 -0
- data/lib/locales/en/culture_series.yml +307 -0
- data/lib/locales/en/currency.yml +1 -1
- data/lib/locales/en/dc_comics.yml +52 -0
- data/lib/locales/en/device.yml +3 -3
- data/lib/locales/en/dog.yml +9 -9
- data/lib/locales/en/dota.yml +101 -100
- data/lib/locales/en/dragon_ball.yml +1 -1
- data/lib/locales/en/educator.yml +2 -1
- data/lib/locales/en/elder_scrolls.yml +9 -8
- data/lib/locales/en/esport.yml +5 -5
- data/lib/locales/en/fallout.yml +135 -134
- data/lib/locales/en/finance.yml +63 -0
- data/lib/locales/en/food.yml +3 -2
- data/lib/locales/en/football.yml +1 -0
- data/lib/locales/en/friends.yml +3 -3
- data/lib/locales/en/ghostbusters.yml +91 -0
- data/lib/locales/en/grateful_dead.yml +47 -0
- data/lib/locales/en/half_life.yml +7 -0
- data/lib/locales/en/heroes.yml +6 -0
- data/lib/locales/en/heroes_of_the_storm.yml +7 -0
- data/lib/locales/en/house.yml +5 -0
- data/lib/locales/en/industry_segments.yml +7 -0
- data/lib/locales/en/kpop.yml +2 -2
- data/lib/locales/en/league_of_legends.yml +8 -7
- data/lib/locales/en/lorem.yml +2 -0
- data/lib/locales/en/marketing.yml +4 -0
- data/lib/locales/en/music.yml +3 -3
- data/lib/locales/en/myst.yml +41 -40
- data/lib/locales/en/name.yml +6 -7
- data/lib/locales/en/nation.yml +3 -0
- data/lib/locales/en/overwatch.yml +39 -34
- data/lib/locales/en/phish.yml +4 -0
- data/lib/locales/en/phone_number.yml +1 -0
- data/lib/locales/en/pokemon.yml +5 -4
- data/lib/locales/en/quote.yml +166 -0
- data/lib/locales/en/relationship.yml +10 -0
- data/lib/locales/en/restaurant.yml +129 -0
- data/lib/locales/en/seinfeld.yml +2 -1
- data/lib/locales/en/sonic_the_hedgehog.yml +410 -0
- data/lib/locales/en/south_park.yml +5 -0
- data/lib/locales/en/star_wars.yml +3 -3
- data/lib/locales/en/subscription.yml +8 -0
- data/lib/locales/en/super_smash_bros.yml +197 -0
- data/lib/locales/en/the_expanse.yml +7 -0
- data/lib/locales/en/vehicle.yml +62 -58
- data/lib/locales/en/witcher.yml +8 -7
- data/lib/locales/en/world_of_warcraft.yml +5 -4
- data/lib/locales/en/zelda.yml +6 -5
- data/lib/locales/es-MX.yml +14 -1
- data/lib/locales/es.yml +13 -0
- data/lib/locales/fa.yml +4 -0
- data/lib/locales/fi-FI.yml +4 -3
- data/lib/locales/fr-CA.yml +18 -13
- data/lib/locales/fr-CH.yml +16 -10
- data/lib/locales/fr.yml +45 -1
- data/lib/locales/he.yml +2 -0
- data/lib/locales/id.yml +2 -0
- data/lib/locales/it.yml +12 -1
- data/lib/locales/ja.yml +45 -21
- data/lib/locales/ko.yml +2 -0
- data/lib/locales/lv.yml +2 -0
- data/lib/locales/nb-NO.yml +11 -4
- data/lib/locales/nl.yml +13 -4
- data/lib/locales/pl.yml +11 -1
- data/lib/locales/pt-BR.yml +578 -4
- data/lib/locales/pt.yml +10 -3
- data/lib/locales/ru.yml +3 -1
- data/lib/locales/sk.yml +19 -13
- data/lib/locales/sv.yml +11 -3
- data/lib/locales/tr.yml +6 -0
- data/lib/locales/uk.yml +2 -0
- data/lib/locales/vi.yml +6 -1
- data/lib/locales/zh-CN.yml +3 -0
- data/lib/locales/zh-TW.yml +3 -1
- metadata +271 -164
- data/lib/extensions/array.rb +0 -22
- data/lib/extensions/symbol.rb +0 -8
- data/lib/faker/aqua_teen_hunger_force.rb +0 -9
- data/lib/faker/back_to_the_future.rb +0 -17
- data/lib/faker/bitcoin.rb +0 -47
- data/lib/faker/bojack_horseman.rb +0 -17
- data/lib/faker/breaking_bad.rb +0 -13
- data/lib/faker/cat.rb +0 -19
- data/lib/faker/community.rb +0 -13
- data/lib/faker/dog.rb +0 -39
- data/lib/faker/dota.rb +0 -25
- data/lib/faker/dr_who.rb +0 -33
- data/lib/faker/dragon_ball.rb +0 -9
- data/lib/faker/dumb_and_dumber.rb +0 -17
- data/lib/faker/dune.rb +0 -54
- data/lib/faker/educator.rb +0 -23
- data/lib/faker/elder_scrolls.rb +0 -37
- data/lib/faker/ethereum.rb +0 -12
- data/lib/faker/fallout.rb +0 -21
- data/lib/faker/family_guy.rb +0 -17
- data/lib/faker/famous_last_words.rb +0 -11
- data/lib/faker/friends.rb +0 -17
- data/lib/faker/game_of_thrones.rb +0 -25
- data/lib/faker/harry_potter.rb +0 -29
- data/lib/faker/hey_arnold.rb +0 -17
- data/lib/faker/hitchhikers_guide_to_the_galaxy.rb +0 -33
- data/lib/faker/hobbit.rb +0 -21
- data/lib/faker/how_i_met_your_mother.rb +0 -21
- data/lib/faker/id_number.rb +0 -51
- data/lib/faker/league_of_legends.rb +0 -29
- data/lib/faker/lebowski.rb +0 -17
- data/lib/faker/lord_of_the_rings.rb +0 -17
- data/lib/faker/lovecraft.rb +0 -80
- data/lib/faker/matz.rb +0 -9
- data/lib/faker/michael_scott.rb +0 -9
- data/lib/faker/most_interesting_man_in_the_world.rb +0 -9
- data/lib/faker/myst.rb +0 -25
- data/lib/faker/new_girl.rb +0 -13
- data/lib/faker/one_piece.rb +0 -29
- data/lib/faker/overwatch.rb +0 -17
- data/lib/faker/parks_and_rec.rb +0 -13
- data/lib/faker/pokemon.rb +0 -17
- data/lib/faker/princess_bride.rb +0 -13
- data/lib/faker/rick_and_morty.rb +0 -17
- data/lib/faker/robin.rb +0 -9
- data/lib/faker/rock_band.rb +0 -9
- data/lib/faker/rupaul.rb +0 -15
- data/lib/faker/seinfeld.rb +0 -13
- data/lib/faker/shakespeare.rb +0 -37
- data/lib/faker/silicon_valley.rb +0 -37
- data/lib/faker/simpsons.rb +0 -17
- data/lib/faker/singular_siegler.rb +0 -9
- data/lib/faker/star_trek.rb +0 -21
- data/lib/faker/star_wars.rb +0 -101
- data/lib/faker/stargate.rb +0 -17
- data/lib/faker/stranger_thing.rb +0 -13
- data/lib/faker/sword_art_online.rb +0 -21
- data/lib/faker/the_fresh_prince_of_bel_air.rb +0 -17
- data/lib/faker/the_it_crowd.rb +0 -21
- data/lib/faker/the_thick_of_it.rb +0 -17
- data/lib/faker/twin_peaks.rb +0 -17
- data/lib/faker/umphreys_mcgee.rb +0 -9
- data/lib/faker/v_for_vendetta.rb +0 -17
- data/lib/faker/vehicle.rb +0 -101
- data/lib/faker/venture_bros.rb +0 -21
- data/lib/faker/witcher.rb +0 -29
- data/lib/faker/world_of_warcraft.rb +0 -13
- data/lib/faker/yoda.rb +0 -10
- data/lib/faker/zelda.rb +0 -22
- data/lib/locales/en/famous_last_words.yml +0 -4
- data/lib/locales/en/matz.yml +0 -28
- data/lib/locales/en/most_interesting_man_in_the_world.yml +0 -106
- data/lib/locales/en/robin.yml +0 -4
- data/lib/locales/en/singular_siegler.yml +0 -37
data/lib/locales/en/nation.yml
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
en:
|
|
2
2
|
faker:
|
|
3
3
|
nation:
|
|
4
|
+
# National flag emojis in bytes
|
|
5
|
+
# Source for list: https://emojipedia.org/flags
|
|
6
|
+
flag: [[240, 159, 135, 166, 240, 159, 135, 168], [240, 159, 135, 166, 240, 159, 135, 169], [240, 159, 135, 166, 240, 159, 135, 170], [240, 159, 135, 166, 240, 159, 135, 171], [240, 159, 135, 166, 240, 159, 135, 172], [240, 159, 135, 166, 240, 159, 135, 174], [240, 159, 135, 166, 240, 159, 135, 177], [240, 159, 135, 166, 240, 159, 135, 178], [240, 159, 135, 166, 240, 159, 135, 180], [240, 159, 135, 166, 240, 159, 135, 182], [240, 159, 135, 166, 240, 159, 135, 183], [240, 159, 135, 166, 240, 159, 135, 184], [240, 159, 135, 166, 240, 159, 135, 185], [240, 159, 135, 166, 240, 159, 135, 186], [240, 159, 135, 166, 240, 159, 135, 188], [240, 159, 135, 166, 240, 159, 135, 189], [240, 159, 135, 166, 240, 159, 135, 191], [240, 159, 135, 167, 240, 159, 135, 166], [240, 159, 135, 167, 240, 159, 135, 167], [240, 159, 135, 167, 240, 159, 135, 169], [240, 159, 135, 167, 240, 159, 135, 170], [240, 159, 135, 167, 240, 159, 135, 171], [240, 159, 135, 167, 240, 159, 135, 172], [240, 159, 135, 167, 240, 159, 135, 173], [240, 159, 135, 167, 240, 159, 135, 174], [240, 159, 135, 167, 240, 159, 135, 175], [240, 159, 135, 167, 240, 159, 135, 177], [240, 159, 135, 167, 240, 159, 135, 178], [240, 159, 135, 167, 240, 159, 135, 179], [240, 159, 135, 167, 240, 159, 135, 180], [240, 159, 135, 167, 240, 159, 135, 182], [240, 159, 135, 167, 240, 159, 135, 183], [240, 159, 135, 167, 240, 159, 135, 184], [240, 159, 135, 167, 240, 159, 135, 185], [240, 159, 135, 167, 240, 159, 135, 187], [240, 159, 135, 167, 240, 159, 135, 188], [240, 159, 135, 167, 240, 159, 135, 190], [240, 159, 135, 167, 240, 159, 135, 191], [240, 159, 135, 168, 240, 159, 135, 166], [240, 159, 135, 168, 240, 159, 135, 168], [240, 159, 135, 168, 240, 159, 135, 169], [240, 159, 135, 168, 240, 159, 135, 171], [240, 159, 135, 168, 240, 159, 135, 172], [240, 159, 135, 168, 240, 159, 135, 173], [240, 159, 135, 168, 240, 159, 135, 174], [240, 159, 135, 168, 240, 159, 135, 176], [240, 159, 135, 168, 240, 159, 135, 177], [240, 159, 135, 168, 240, 159, 135, 178], [240, 159, 135, 168, 240, 159, 135, 179], [240, 159, 135, 168, 240, 159, 135, 180], [240, 159, 135, 168, 240, 159, 135, 181], [240, 159, 135, 168, 240, 159, 135, 183], [240, 159, 135, 168, 240, 159, 135, 186], [240, 159, 135, 168, 240, 159, 135, 187], [240, 159, 135, 168, 240, 159, 135, 188], [240, 159, 135, 168, 240, 159, 135, 189], [240, 159, 135, 168, 240, 159, 135, 190], [240, 159, 135, 168, 240, 159, 135, 191], [240, 159, 135, 169, 240, 159, 135, 170], [240, 159, 135, 169, 240, 159, 135, 172], [240, 159, 135, 169, 240, 159, 135, 175], [240, 159, 135, 169, 240, 159, 135, 176], [240, 159, 135, 169, 240, 159, 135, 178], [240, 159, 135, 169, 240, 159, 135, 180], [240, 159, 135, 169, 240, 159, 135, 191], [240, 159, 135, 170, 240, 159, 135, 166], [240, 159, 135, 170, 240, 159, 135, 168], [240, 159, 135, 170, 240, 159, 135, 170], [240, 159, 135, 170, 240, 159, 135, 172], [240, 159, 135, 170, 240, 159, 135, 173], [240, 159, 135, 170, 240, 159, 135, 183], [240, 159, 135, 170, 240, 159, 135, 184], [240, 159, 135, 170, 240, 159, 135, 185], [240, 159, 135, 170, 240, 159, 135, 186], [240, 159, 135, 171, 240, 159, 135, 174], [240, 159, 135, 171, 240, 159, 135, 175], [240, 159, 135, 171, 240, 159, 135, 176], [240, 159, 135, 171, 240, 159, 135, 178], [240, 159, 135, 171, 240, 159, 135, 180], [240, 159, 135, 171, 240, 159, 135, 183], [240, 159, 135, 172, 240, 159, 135, 166], [240, 159, 135, 172, 240, 159, 135, 167], [240, 159, 135, 172, 240, 159, 135, 169], [240, 159, 135, 172, 240, 159, 135, 170], [240, 159, 135, 172, 240, 159, 135, 171], [240, 159, 135, 172, 240, 159, 135, 172], [240, 159, 135, 172, 240, 159, 135, 173], [240, 159, 135, 172, 240, 159, 135, 174], [240, 159, 135, 172, 240, 159, 135, 177], [240, 159, 135, 172, 240, 159, 135, 178], [240, 159, 135, 172, 240, 159, 135, 179], [240, 159, 135, 172, 240, 159, 135, 181], [240, 159, 135, 172, 240, 159, 135, 182], [240, 159, 135, 172, 240, 159, 135, 183], [240, 159, 135, 172, 240, 159, 135, 184], [240, 159, 135, 172, 240, 159, 135, 185], [240, 159, 135, 172, 240, 159, 135, 186], [240, 159, 135, 172, 240, 159, 135, 188], [240, 159, 135, 172, 240, 159, 135, 190], [240, 159, 135, 173, 240, 159, 135, 176], [240, 159, 135, 173, 240, 159, 135, 178], [240, 159, 135, 173, 240, 159, 135, 179], [240, 159, 135, 173, 240, 159, 135, 183], [240, 159, 135, 173, 240, 159, 135, 185], [240, 159, 135, 173, 240, 159, 135, 186], [240, 159, 135, 174, 240, 159, 135, 168], [240, 159, 135, 174, 240, 159, 135, 169], [240, 159, 135, 174, 240, 159, 135, 170], [240, 159, 135, 174, 240, 159, 135, 177], [240, 159, 135, 174, 240, 159, 135, 178], [240, 159, 135, 174, 240, 159, 135, 179], [240, 159, 135, 174, 240, 159, 135, 180], [240, 159, 135, 174, 240, 159, 135, 182], [240, 159, 135, 174, 240, 159, 135, 183], [240, 159, 135, 174, 240, 159, 135, 184], [240, 159, 135, 174, 240, 159, 135, 185], [240, 159, 135, 175, 240, 159, 135, 170], [240, 159, 135, 175, 240, 159, 135, 178], [240, 159, 135, 175, 240, 159, 135, 180], [240, 159, 135, 175, 240, 159, 135, 181], [240, 159, 135, 176, 240, 159, 135, 170], [240, 159, 135, 176, 240, 159, 135, 172], [240, 159, 135, 176, 240, 159, 135, 173], [240, 159, 135, 176, 240, 159, 135, 174], [240, 159, 135, 176, 240, 159, 135, 178], [240, 159, 135, 176, 240, 159, 135, 179], [240, 159, 135, 176, 240, 159, 135, 181], [240, 159, 135, 176, 240, 159, 135, 183], [240, 159, 135, 176, 240, 159, 135, 188], [240, 159, 135, 176, 240, 159, 135, 190], [240, 159, 135, 176, 240, 159, 135, 191], [240, 159, 135, 177, 240, 159, 135, 166], [240, 159, 135, 177, 240, 159, 135, 167], [240, 159, 135, 177, 240, 159, 135, 168], [240, 159, 135, 177, 240, 159, 135, 174], [240, 159, 135, 177, 240, 159, 135, 176], [240, 159, 135, 177, 240, 159, 135, 183], [240, 159, 135, 177, 240, 159, 135, 184], [240, 159, 135, 177, 240, 159, 135, 185], [240, 159, 135, 177, 240, 159, 135, 186], [240, 159, 135, 177, 240, 159, 135, 187], [240, 159, 135, 177, 240, 159, 135, 190], [240, 159, 135, 178, 240, 159, 135, 166], [240, 159, 135, 178, 240, 159, 135, 168], [240, 159, 135, 178, 240, 159, 135, 169], [240, 159, 135, 178, 240, 159, 135, 170], [240, 159, 135, 178, 240, 159, 135, 171], [240, 159, 135, 178, 240, 159, 135, 172], [240, 159, 135, 178, 240, 159, 135, 173], [240, 159, 135, 178, 240, 159, 135, 176], [240, 159, 135, 178, 240, 159, 135, 177], [240, 159, 135, 178, 240, 159, 135, 178], [240, 159, 135, 178, 240, 159, 135, 179], [240, 159, 135, 178, 240, 159, 135, 180], [240, 159, 135, 178, 240, 159, 135, 181], [240, 159, 135, 178, 240, 159, 135, 182], [240, 159, 135, 178, 240, 159, 135, 183], [240, 159, 135, 178, 240, 159, 135, 184], [240, 159, 135, 178, 240, 159, 135, 185], [240, 159, 135, 178, 240, 159, 135, 186], [240, 159, 135, 178, 240, 159, 135, 187], [240, 159, 135, 178, 240, 159, 135, 188], [240, 159, 135, 178, 240, 159, 135, 189], [240, 159, 135, 178, 240, 159, 135, 190], [240, 159, 135, 178, 240, 159, 135, 191], [240, 159, 135, 179, 240, 159, 135, 166], [240, 159, 135, 179, 240, 159, 135, 168], [240, 159, 135, 179, 240, 159, 135, 170], [240, 159, 135, 179, 240, 159, 135, 171], [240, 159, 135, 179, 240, 159, 135, 172], [240, 159, 135, 179, 240, 159, 135, 174], [240, 159, 135, 179, 240, 159, 135, 177], [240, 159, 135, 179, 240, 159, 135, 180], [240, 159, 135, 179, 240, 159, 135, 181], [240, 159, 135, 179, 240, 159, 135, 183], [240, 159, 135, 179, 240, 159, 135, 186], [240, 159, 135, 179, 240, 159, 135, 191], [240, 159, 135, 180, 240, 159, 135, 178], [240, 159, 135, 181, 240, 159, 135, 166], [240, 159, 135, 181, 240, 159, 135, 170], [240, 159, 135, 181, 240, 159, 135, 171], [240, 159, 135, 181, 240, 159, 135, 172], [240, 159, 135, 181, 240, 159, 135, 173], [240, 159, 135, 181, 240, 159, 135, 176], [240, 159, 135, 181, 240, 159, 135, 177], [240, 159, 135, 181, 240, 159, 135, 178], [240, 159, 135, 181, 240, 159, 135, 179], [240, 159, 135, 181, 240, 159, 135, 183], [240, 159, 135, 181, 240, 159, 135, 184], [240, 159, 135, 181, 240, 159, 135, 185], [240, 159, 135, 181, 240, 159, 135, 188], [240, 159, 135, 181, 240, 159, 135, 190], [240, 159, 135, 182, 240, 159, 135, 166], [240, 159, 135, 183, 240, 159, 135, 170], [240, 159, 135, 183, 240, 159, 135, 180], [240, 159, 135, 183, 240, 159, 135, 184], [240, 159, 135, 183, 240, 159, 135, 186], [240, 159, 135, 183, 240, 159, 135, 188], [240, 159, 135, 184, 240, 159, 135, 166], [240, 159, 135, 184, 240, 159, 135, 167], [240, 159, 135, 184, 240, 159, 135, 168], [240, 159, 135, 184, 240, 159, 135, 169], [240, 159, 135, 184, 240, 159, 135, 170], [240, 159, 135, 184, 240, 159, 135, 172], [240, 159, 135, 184, 240, 159, 135, 173], [240, 159, 135, 184, 240, 159, 135, 174], [240, 159, 135, 184, 240, 159, 135, 175], [240, 159, 135, 184, 240, 159, 135, 176], [240, 159, 135, 184, 240, 159, 135, 177], [240, 159, 135, 184, 240, 159, 135, 178], [240, 159, 135, 184, 240, 159, 135, 179], [240, 159, 135, 184, 240, 159, 135, 180], [240, 159, 135, 184, 240, 159, 135, 183], [240, 159, 135, 184, 240, 159, 135, 184], [240, 159, 135, 184, 240, 159, 135, 185], [240, 159, 135, 184, 240, 159, 135, 187], [240, 159, 135, 184, 240, 159, 135, 189], [240, 159, 135, 184, 240, 159, 135, 190], [240, 159, 135, 184, 240, 159, 135, 191], [240, 159, 135, 185, 240, 159, 135, 166], [240, 159, 135, 185, 240, 159, 135, 168], [240, 159, 135, 185, 240, 159, 135, 169], [240, 159, 135, 185, 240, 159, 135, 171], [240, 159, 135, 185, 240, 159, 135, 172], [240, 159, 135, 185, 240, 159, 135, 173], [240, 159, 135, 185, 240, 159, 135, 175], [240, 159, 135, 185, 240, 159, 135, 176], [240, 159, 135, 185, 240, 159, 135, 177], [240, 159, 135, 185, 240, 159, 135, 178], [240, 159, 135, 185, 240, 159, 135, 179], [240, 159, 135, 185, 240, 159, 135, 180], [240, 159, 135, 185, 240, 159, 135, 183], [240, 159, 135, 185, 240, 159, 135, 185], [240, 159, 135, 185, 240, 159, 135, 187], [240, 159, 135, 185, 240, 159, 135, 188], [240, 159, 135, 185, 240, 159, 135, 191], [240, 159, 135, 186, 240, 159, 135, 166], [240, 159, 135, 186, 240, 159, 135, 172], [240, 159, 135, 186, 240, 159, 135, 178], [240, 159, 135, 186, 240, 159, 135, 179], [240, 159, 135, 186, 240, 159, 135, 184], [240, 159, 135, 186, 240, 159, 135, 190], [240, 159, 135, 186, 240, 159, 135, 191], [240, 159, 135, 187, 240, 159, 135, 166], [240, 159, 135, 187, 240, 159, 135, 168], [240, 159, 135, 187, 240, 159, 135, 170], [240, 159, 135, 187, 240, 159, 135, 172], [240, 159, 135, 187, 240, 159, 135, 174], [240, 159, 135, 187, 240, 159, 135, 179], [240, 159, 135, 187, 240, 159, 135, 186], [240, 159, 135, 188, 240, 159, 135, 171], [240, 159, 135, 188, 240, 159, 135, 184], [240, 159, 135, 189, 240, 159, 135, 176], [240, 159, 135, 190, 240, 159, 135, 170], [240, 159, 135, 190, 240, 159, 135, 185], [240, 159, 135, 191, 240, 159, 135, 166], [240, 159, 135, 191, 240, 159, 135, 178], [240, 159, 135, 191, 240, 159, 135, 188], [240, 159, 143, 180, 243, 160, 129, 167, 243, 160, 129, 162, 243, 160, 129, 165, 243, 160, 129, 174, 243, 160, 129, 167, 243, 160, 129, 191], [240, 159, 143, 180, 243, 160, 129, 167, 243, 160, 129, 162, 243, 160, 129, 179, 243, 160, 129, 163, 243, 160, 129, 180, 243, 160, 129, 191], [240, 159, 143, 180, 243, 160, 129, 167, 243, 160, 129, 162, 243, 160, 129, 183, 243, 160, 129, 172, 243, 160, 129, 179, 243, 160, 129, 191]]
|
|
4
7
|
# This list is taken from https://en.wikipedia.org/wiki/Lists_of_people_by_nationality
|
|
5
8
|
nationality: [Afghans, Albanians, Algerians, Americans, Andorrans, Angolans, Argentines, Armenians, Aromanians, Arubans, Australians, Austrians, Bahamians, Bahrainis, Bangladeshis, Barbadians, Belarusians, Belgians, Belizeans, Bermudians, Boers, Bosniaks, Brazilians, Bretons, British, British Virgin Islanders, Bulgarians, Macedonian Bulgarians, Burkinabès, Burundians, Cambodians, Cameroonians, Canadians, Catalans, Cape, Verdeans, Chadians, Chileans, Chinese, Colombians, Comorians, Congolese, Croatians, Cubans, Turkish Cypriots, Czechs, Danes, Dominicans (Republic), Dominicans (Commonwealth), Dutch, East Timorese, Ecuadorians, Egyptians, Emiratis, English, Eritreans, Estonians, Ethiopians, Faroese, Finns, Finnish Swedish, Fijians, Filipinos, French citizens, Georgians, Germans, Baltic Germans, Ghanaians, Gibraltar, Greeks, Greek Macedonians, Grenadians, Guatemalans, Guianese (French), Guineans, Guinea-Bissau nationals, Guyanese, Haitians, Hondurans, Hong Kong, Hungarians, Icelanders, Indians, Indonesians, Iranians (Persians), Iraqis, Irish, Israelis, Italians, Ivoirians, Jamaicans, Japanese, Jordanians, Kazakhs, Kenyans, Koreans, Kosovo Albanians, Kurds, Kuwaitis, Lao, Latvians, Lebanese, Liberians, Libyans, Liechtensteiners, Lithuanians, Luxembourgers, Macedonians, Malagasy, Malaysians, Malawians, Maldivians, Malians, Maltese, Manx, Mauritians, Mexicans, Moldovans, Moroccans, Mongolians, Montenegrins, Namibians, Nepalese, New Zealanders, Nicaraguans, Nigeriens, Nigerians, Norwegians, Pakistanis, Palauans, Palestinians, Panamanians, Papua New Guineans, Paraguayans, Peruvians, Poles, Portuguese, Puerto Ricans, Quebecers, Réunionnais, Romanians, Russians, Baltic Russians,Rwandans,Salvadorans, São Tomé and Príncipe, Saudis, Scots, Senegalese, Serbs, Sierra Leoneans, Singaporeans, Sindhian, Slovaks, Slovenes, Somalis, South Africans, Spaniards, Sri Lankans,St Lucians,Sudanese,Surinamese,Swedes,Swiss,Syrians,Taiwanese,Tanzanians,Thais,Tibetans,Tobagonians,Trinidadians,Tunisians,Turks,Tuvaluans,Ugandans,Ukrainians,Uruguayans,Uzbeks,Vanuatuans,Venezuelans,Vietnamese,Welsh,Yemenis,Zambians,Zimbabweans]
|
|
6
9
|
language: [Nepali, Hindi, English, Japanease, Arabic, Portuguese, Russian, Japanese, German, Javanese, Telugu, Korean, French, Marathi, Italian, Thai, Hakka, Tagalog, Romanian, Dutch, Kazakh, Zulu, Swedish]
|
|
@@ -1,36 +1,41 @@
|
|
|
1
1
|
en:
|
|
2
2
|
faker:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
3
|
+
games:
|
|
4
|
+
overwatch:
|
|
5
|
+
heroes: ["Ana", "Bastion", "D.va", "Doomfist", "Genji", "Hanzo", "Junkrat", "Lucio", "McCree", "Mei", "Mercy", "Moira", "Orisa", "Pharah", "Reaper", "Reinhardt", "Roadhog", "Soldier 76", "Sombra", "Symmetra", "Torbjorn", "Tracer", "Widowmaker", "Winston", "Wrecking Ball", "Zarya", "Zenyatta"]
|
|
6
|
+
locations: ["Adlersbrunn", "Ayutthaya", "Black Forest", "Blizzard World", "Busan", "Busan Stadium", "Castillo", "Château Guillard", "Dorado", "Ecopoint: Antarctica", "Eichenwalde", "Estádio das Rãs", "Hanamura", "Hollywood", "Horizon Lunar Colony", "Ilios", "Junkertown", "King's Row", "Lijiang Tower", "Nepal", "Numbani", "Oasis", "Petra", "Rialto", "Route 66", "Temple of Anubis", "Volskaya Industries", "Watchpoint: Gibraltar"]
|
|
7
|
+
quotes: [
|
|
8
|
+
"Activating Self Destruct Sequence.",
|
|
9
|
+
"Alla till mig!",
|
|
10
|
+
"Area denied.",
|
|
11
|
+
"Bombs away!",
|
|
12
|
+
"Clearing the area.",
|
|
13
|
+
"Die! Die! Die!",
|
|
14
|
+
"Dòng zhù! Bùxǔ zǒu!",
|
|
15
|
+
"EMP activated!",
|
|
16
|
+
"Experience tranquility.",
|
|
17
|
+
"Fire at will!",
|
|
18
|
+
"Fire in the hole!",
|
|
19
|
+
"Freeze! Don't move!",
|
|
20
|
+
"Géill do mo thoil!",
|
|
21
|
+
"Hammer DOWN!",
|
|
22
|
+
"Here ya go!",
|
|
23
|
+
"It's high noon.",
|
|
24
|
+
"Ladies and gentlemen, start your engines!",
|
|
25
|
+
"MOLTEN CORE!",
|
|
26
|
+
"Minefield deployed.",
|
|
27
|
+
"Nano Boost administered.",
|
|
28
|
+
"Nerf this!",
|
|
29
|
+
"Ogon' po gotovnosti!",
|
|
30
|
+
"Oh, let's break it down!",
|
|
31
|
+
"Pass into the Iris.",
|
|
32
|
+
"Rally to me!",
|
|
33
|
+
"Step right up.",
|
|
34
|
+
"Surrender to my will!",
|
|
35
|
+
"Time's up!",
|
|
36
|
+
"Vamos esculachar!",
|
|
37
|
+
"Wait for it...",
|
|
38
|
+
"Warīhum quwitak!",
|
|
39
|
+
"You're powered up, get in there.",
|
|
40
|
+
"¡Apagando las luces!"
|
|
41
|
+
]
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
phish:
|
|
4
|
+
song: ["A Song I Heard the Ocean Sing", "AC/DC Bag", "Access Me", "Acoustic Army", "Aftermath", "Alaska", "Albert", "All of These Dreams", "All Things Reconsidered", "Alumni Blues", "Anarchy", "And So To Bed", "Anything But Me", "Architect", "Army of One", "At the Barbecue", "Avenu Malkenu", "Axilla", "Axilla Part II", "Babylon Baby", "Back on the Train", "Backwards Down the Number Line", "Backwards Food for Backwards Folks", "Bathtub Gin", "Beauty of a Broken Heart", "Big Ball Jam", "Big Black Furry Creature from Mars", "Billy Breathes", "Birds of a Feather", "The Birdwatcher", "Bittersweet Motel", "Bliss", "Blue Over Yellow", "Bouncing Around the Room", "Brian and Robert", "Brother", "Bubble Wrap", "Bug", "Buried Alive", "Burn That Bridge", "Bye Bye Foot", "Camel Walk", "Can't Come Back", "Carini", "Cars Trucks Buses", "Catapult", "The Cataract Song", "Cavern", "Chalkdust Torture", "Character Zero", "Clone", "Colonel Forbin's Ascent", "TheConnection", "Contact", "Crowd Control", "The Curtain", "The Curtain With", "Dave's Energy Guide", "David Bowie", "Dear Mrs. Reagan", "Demand", "Den of Iniquity", "Destiny Unbound", "Dinner and a Movie", "Dirt", "Discern", "The Divided Sky", "Dog Faced Boy", "Dog Log", "Dogs Stole Things", "Don't Get Me Wrong", "Down With Disease", "Dr. Gabel", "Drifting", "Driver", "Eliza", "End of Session", "Esther", "Faht", "Farmhouse", "Fast Enough for You", "Fee", "Fikus", "Final Flight", "First Tube", "Fish Bass", "Flat Fee", "Fluff's Travels", "Fluffhead", "Fly Famous Mockingbird", "Foam", "Frankie Says", "Free", "Friday", "Fuck Your Face", "Gatekeeper", "Ghost", "Glide", "Glide II", "Golgi Apparatus", "Gone", "Gotta Jibboo", "Grind", "Guantanamo Strut", "Guelah Papyrus", "Gumbo", "Guy Forget", "Guyute", "Ha Ha Ha", "Halfway to the Moon", "Halley's Comet", "The Happy Whip and Dung Song", "Harpua", "Harry Hood", "He Ent to the Bog", "Heartache", "Heavy Things", "Horn", "The Horse", "I Am Hydrogen", "I Been Around", "I Didn't Know", "Icculus", "Idea", "If I Could", "If I Told You", "In a Hole", "In a Misty Glade", "Ingest", "The Inlaw Josie Wales", "Insects", "Invisible", "It's Ice", "Jaegermeister Song", "Jennifer Dances", "Joy", "Julius", "Keyboard Army", "Kill Devil Falls", "Kung", "The Landlady", "Last Victor Jam", "Lawn Boy", "Lazy and Red", "Lengthwise", "Leprechaun", "Let Me Lie", "Letter to Jimmy Page", "Lifeboy", "Light", "Limb By Limb", "Liquid Time", "The Lizards", "Llama", "Lushington", "Maggie's Revenge", "Magilla", "Makisupa Policeman", "The Man Who Stepped Into Yesterday", "The Mango Song", "Maze", "McGrupp and the Watchful Hosemasters", "Meat", "Meatstick", "Mexican Cousin", "Mike's Song", "Minkin", "Mock Song", "The Moma Dance", "Montana", "Mound", "Mountains in the Mist", "Mozambique", "Mr. Completely", "My Friend, My Friend", "My Left Toe", "My Problem Right There", "My Sweet One", "N02", "The Name Is Slick", "Never", "NICU", "No Dogs Allowed", "Nothing", "Ocelot", "The Oh Kee Pa Ceremony", "Only a Dream", "Party Time", "Pebbles And Marbles", "Pigtail", "Piper", "Poor Heart", "Possum", "The Practical Song", "Prep School Hippie", "Prince Caspian", "Punch Me in the Eye", "Punch You in the Eye", "Quadrophonic Toppling", "Reba", "Revolution", "Rift", "Riker's Mailbox", "Rocka William", "Roggae", "Round Room", "Run Like An Antelope", "Runaway Jim", "Running Scared", "Sample in a Jar", "Sand", "Sanity", "Saw it Again", "Scent of a Mule", "Scents and Subtle Sounds", "Secret Smile", "Setting Sail", "Seven Below", "Shafty", "Show of Life", "Shrine", "Silent in the Morning", "Simple", "Skippy the Wondermouse", "Sky Train Wand", "Slave to the Traffic Light", "Sleep", "Sleep Again", "Sleeping Monkey", "The Sloth", "Somantin", "Sparkle", "Spices", "Splinters of Hail", "Split Open and Melt", "Spock's Brain", "Spread it Round", "The Squirming Coil", "Stash", "Stealing Time From The Faulty Plan", "Steam", "Steep", "Strange Design", "Sugar Shack", "Summer of '89", "Susskind Hotel", "Suzy Greenberg", "Swept Away", "Talk", "Taste", "Tela", "Theme From the Bottom", "Thunderhead", "Time Turns Elastic", "Tiny", "Title Track", "Tomorrow's Song", "Train Song", "Tube", "Tweezer", "Tweezer Reprise", "Twenty Years Later", "Twist", "Two Versions of Me", "Undermind", "Union Federal", "Victor Jam Session", "Vultures", "Waking Up", "Walfredo", "Walls Of The Cave", "Waste", "Water in the Sky", "Waves", "The Wedge", "Weekapaug Groove", "Weekly Time", "Weigh", "What Things Seem", "What's the Use?", "Wilson", "Windora Bug", "Windy City", "Wolfman's Brother", "Wombat", "You Enjoy Myself"]
|
|
@@ -4,3 +4,4 @@ en:
|
|
|
4
4
|
formats: ['###-###-####', '(###) ###-####', '1-###-###-####', '###.###.####', '###-###-####', '(###) ###-####', '1-###-###-####', '###.###.####', '###-###-#### x###', '(###) ###-#### x###', '1-###-###-#### x###', '###.###.#### x###', '###-###-#### x####', '(###) ###-#### x####', '1-###-###-#### x####', '###.###.#### x####', '###-###-#### x#####', '(###) ###-#### x#####', '1-###-###-#### x#####', '###.###.#### x#####']
|
|
5
5
|
cell_phone:
|
|
6
6
|
formats: ['###-###-####', '(###) ###-####', '1-###-###-####', '###.###.####']
|
|
7
|
+
country_code: ["1", "1-242", "1-246", "1-264", "1-268", "1-284", "1-340", "1-345", "1-441", "1-473", "1-649", "1-670", "1-671", "1-684", "1-758", "1-784", "1-787", "1-868", "1-869", "1-876", "1-939", "20", "212", "213", "216", "218", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "238", "238", "239", "240", "241", "242", "243", "244", "245", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256", "257", "258", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "269", "27", "290", "291", "297", "298", "299", "30", "31", "32", "33", "33", "34", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "36", "370", "371", "372", "373", "374", "375", "376", "378", "380", "381", "381", "381", "385", "386", "387", "389", "39", "39", "40", "41", "420", "421", "423", "43", "44", "45", "46", "47", "48", "49", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "51", "52", "53", "54", "55", "56", "57", "58", "591", "592", "593", "594", "595", "596", "596", "597", "598", "599", "60", "61", "61-8", "62", "63", "64", "65", "66", "670", "672", "673", "674", "675", "676", "677", "678", "679", "680", "681", "682", "683", "685", "686", "687", "688", "689", "690", "691", "692", "7", "7-6", "7-7", "767", "809", "809", "809", "81", "82", "84", "850", "850", "852", "853", "855", "855", "856", "86", "880", "886", "886", "90", "91", "92", "93", "94", "95", "960", "961", "962", "963", "964", "965", "966", "967", "968", "971", "972", "973", "974", "975", "976", "977", "98", "993", "994", "995", "996"]
|
data/lib/locales/en/pokemon.yml
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
en:
|
|
2
2
|
faker:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
games:
|
|
4
|
+
pokemon:
|
|
5
|
+
names: ["Bulbasaur", "Ivysaur", "Venusaur", "Charmander", "Charmeleon", "Charizard", "Squirtle", "Wartortle", "Blastoise", "Caterpie", "Metapod", "Butterfree", "Weedle", "Kakuna", "Beedrill", "Pidgey", "Pidgeotto", "Pidgeot", "Rattata", "Raticate", "Spearow", "Fearow", "Ekans", "Arbok", "Pikachu", "Raichu", "Sandshrew", "Sandslash", "Nidoran", "Nidorina", "Nidoqueen", "Nidoran", "Nidorino", "Nidoking", "Clefairy", "Clefable", "Vulpix", "Ninetales", "Jigglypuff", "Wigglytuff", "Zubat", "Golbat", "Oddish", "Gloom", "Vileplume", "Paras", "Parasect", "Venonat", "Venomoth", "Diglett", "Dugtrio", "Meowth", "Persian", "Psyduck", "Golduck", "Mankey", "Primeape", "Growlithe", "Arcanine", "Poliwag", "Poliwhirl", "Poliwrath", "Abra", "Kadabra", "Alakazam", "Machop", "Machoke", "Machamp", "Bellsprout", "Weepinbell", "Victreebel", "Tentacool", "Tentacruel", "Geodude", "Graveler", "Golem", "Ponyta", "Rapidash", "Slowpoke", "Slowbro", "Magnemite", "Magneton", "Farfetch'd", "Doduo", "Dodrio", "Seel", "Dewgong", "Grimer", "Muk", "Shellder", "Cloyster", "Gastly", "Haunter", "Gengar", "Onix", "Drowzee", "Hypno", "Krabby", "Kingler", "Voltorb", "Electrode", "Exeggcute", "Exeggutor", "Cubone", "Marowak", "Hitmonlee", "Hitmonchan", "Lickitung", "Koffing", "Weezing", "Rhyhorn", "Rhydon", "Chansey", "Tangela", "Kangaskhan", "Horsea", "Seadra", "Goldeen", "Seaking", "Staryu", "Starmie", "Mr. Mime", "Scyther", "Jynx", "Electabuzz", "Magmar", "Pinsir", "Tauros", "Magikarp", "Gyarados", "Lapras", "Ditto", "Eevee", "Vaporeon", "Jolteon", "Flareon", "Porygon", "Omanyte", "Omastar", "Kabuto", "Kabutops", "Aerodactyl", "Snorlax", "Articuno", "Zapdos", "Moltres", "Dratini", "Dragonair", "Dragonite", "Mewtwo", "Mew"]
|
|
6
|
+
locations: ["Accumula Town", "Ambrette Town", "Anistar City", "Anville Town", "Aquacorde Town", "Aspertia City", "Azalea Town", "Black City", "Blackthorn City", "Camphrier Town", "Canalave City", "Castelia City", "Celadon City", "Celestic Town", "Cerulean City", "Cherrygrove City", "Cianwood City", "Cinnabar Island", "Coumarine City", "Couriway Town", "Cyllage City", "Dendemille Town", "Dewford Town", "Driftveil City", "Ecruteak City", "Eterna City", "Ever Grande City", "Fallarbor Town", "Fight Area", "Five Island", "Floaroma Town", "Floccesy Town", "Fortree City", "Four Island", "Frontier Access", "Fuchsia City", "Geosenge Town", "Goldenrod City", "Hearthome City", "Humilau City", "Icirrus City", "Jubilife City", "Kiloude City", "Lacunosa Town", "Lavaridge Town", "Lavender Town", "Laverre City", "Lentimas Town", "Littleroot Town", "Lilycove City", "Lumiose City", "Mahogany Town", "Mauville City", "Mistralton City", "Mossdeep City", "Nacrene City", "New Bark Town", "Nimbasa City", "Nuvema Town", "Oldale Town", "Olivine City", "One Island", "Opelucid City", "Oreburgh City", "Pacifidlog Town", "Pallet Town", "Pastoria City", "Petalburg City", "Pewter City", "Resort Area", "Rustboro City", "Safari Zone Gate", "Saffron City", "Sandgem Town", "Santalune City", "Striaton City", "Seven Island", "Shalour City", "Six Island", "Slateport City", "Snowbelle City", "Snowpoint City", "Solaceon Town", "Sootopolis City", "Sunyshore City", "Survival Area", "Three Island", "Twinleaf Town", "Two Island", "Undella Town", "Vaniville Town", "Veilstone City", "Verdanturf Town", "Vermilion City", "Violet City", "Virbank City", "Viridian City", "White Forest"]
|
|
7
|
+
moves: ["Absorb", "Acid", "Acid Armor", "Agility", "Amnesia", "Aurora Beam", "Barrage", "Barrier", "Bide", "Bind", "Bite", "Blizzard", "Body Slam", "Bone Club", "Bonemerang", "Bubble", "Bubble Beam", "Clamp", "Comet Punch", "Confuse Ray", "Confusion", "Constrict", "Conversion", "Counter", "Crabhammer", "Cut", "Defense Curl", "Dig", "Disable", "Dizzy Punch", "Double Kick", "Double Slap", "Double Team", "Double-Edge", "Dragon Rage", "Dream Eater", "Drill Peck", "Earthquake", "Egg Bomb", "Ember", "Explosion", "Fire Blast", "Fire Punch", "Fire Spin", "Fissure", "Flamethrower", "Flash", "Fly", "Focus Energy", "Fury Attack", "Fury Swipes", "Glare", "Growl", "Growth", "Guillotine", "Gust", "Harden", "Haze", "Headbutt", "High Jump Kick", "Horn Attack", "Horn Drill", "Hydro Pump", "Hyper Beam", "Hyper Fang", "Hypnosis", "Ice Beam", "Ice Punch", "Jump Kick", "Karate Chop", "Kinesis", "Leech Life", "Leech Seed", "Leer", "Lick", "Light Screen", "Lovely Kiss", "Low Kick", "Meditate", "Mega Drain", "Mega Kick", "Mega Punch", "Metronome", "Mimic", "Minimize", "Mirror Move", "Mist", "Night Shade", "Pay Day", "Peck", "Petal Dance", "Pin Missile", "Poison Gas", "Poison Powder", "Poison Sting", "Pound", "Psybeam", "Psychic", "Psywave", "Quick Attack", "Rage", "Razor Leaf", "Razor Wind", "Recover", "Reflect", "Rest", "Roar", "Rock Slide", "Rock Throw", "Rolling Kick", "Sand Attack", "Scratch", "Screech", "Seismic Toss", "Self-Destruct", "Sharpen", "Sing", "Skull Bash", "Sky Attack", "Slam", "Slash", "Sleep Powder", "Sludge", "Smog", "Smokescreen", "Soft-Boiled", "Solar Beam", "Sonic Boom", "Spike Cannon", "Splash", "Spore", "Stomp", "Strength", "String Shot", "Struggle", "Stun Spore", "Submission", "Substitute", "Super Fang", "Supersonic", "Surf", "Swift", "Swords Dance", "Tackle", "Tail Whip", "Take Down", "Teleport", "Thrash", "Thunder", "Thunder Punch", "Thunder Shock", "Thunder Wave", "Thunderbolt", "Toxic", "Transform", "Tri Attack", "Twineedle", "Vice Grip", "Vine Whip", "Water Gun", "Waterfall", "Whirlwind", "Wing Attack", "Withdraw", "Wrap"]
|
|
7
8
|
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
quote:
|
|
4
|
+
famous_last_words: ["I don't know.", "No comment.", "Van Halen!", "Is it not meningitis?", "I love you too, honey. Good luck with your show.", "Am I dying, or is this my birthday?", "I want your bunk!", "I went the distance.", "Goodnight, my darlings, I'll see you tomorrow.", "I am confound.", "That was the best ice-cream soda I ever tasted.", "All my possessions for a moment of time.", "Hurrah for anarchy! This is the happiest moment of my life.", "It's stopped.", "You can get anything you want at Alice's restaurant.", "Yes, it's tough, but not as tough as doing comedy.", "That's good. Go on, read some more.", "I love you.", "One! Two! Three!", "Do you want me to come with you?", "Does nobody understand?", "I wish I could go with you.", "I'll be in Hell before you start breakfast! Let her rip!", "Tape Seinfeld for me.", "Strike the tent.", "I don't think they even heard me.", "I regret that I should leave this world without again beholding him.", "Well, this is certainly a pleasant surprise.", "Okay, I won't.", "I want to go home.", "Happy.", "I forgot something.", "My vocabulary did this to me. Your love will let you go on…"]
|
|
5
|
+
matz: [
|
|
6
|
+
"I believe consistency and orthogonality are tools of design, not the primary goal in design.",
|
|
7
|
+
"From the viewpoint of what you can do, therefore, languages do differ - but the differences are limited. For example, Python and Ruby provide almost the same power to the programmer.",
|
|
8
|
+
"The orthogonal features, when combined, can explode into complexity.",
|
|
9
|
+
"I didn't work hard to make Ruby perfect for everyone, because you feel differently from me. No language can be perfect for everyone. I tried to make Ruby perfect for me, but maybe it's not perfect for you. The perfect language for Guido van Rossum is probably Python.",
|
|
10
|
+
"Because of the Turing completeness theory, everything one Turing-complete language can do can theoretically be done by another Turing-complete language, but at a different cost. You can do everything in assembler, but no one wants to program in assembler anymore.",
|
|
11
|
+
"Ruby inherited the Perl philosophy of having more than one way to do the same thing. I inherited that philosophy from Larry Wall, who is my hero actually. I want to make Ruby users free. I want to give them the freedom to choose.",
|
|
12
|
+
"You want to enjoy life, don't you? If you get your job done quickly and your job is fun, that's good isn't it? That's the purpose of life, partly. Your life is better.",
|
|
13
|
+
"People are different. People choose different criteria. But if there is a better way among many alternatives, I want to encourage that way by making it comfortable. So that's what I've tried to do.",
|
|
14
|
+
"In our daily lives as programmers, we process text strings a lot. So I tried to work hard on text processing, namely the string class and regular expressions. Regular expressions are built into the language and are very tuned up for use.",
|
|
15
|
+
"Most of the tasks we do are for humans. For example, a tax calculation is counting numbers so the government can pull money out from my wallet, but government consists of humans.",
|
|
16
|
+
"Actually, I didn't make the claim that Ruby follows the principle of least surprise. Someone felt the design of Ruby follows that philosophy, so they started saying that. I didn't bring that up, actually.",
|
|
17
|
+
"Smart people underestimate the ordinarity of ordinary people.",
|
|
18
|
+
"Language designers want to design the perfect language. They want to be able to say, 'My language is perfect. It can do everything.' But it's just plain impossible to design a perfect language, because there are two ways to look at a language. One way is by looking at what can be done with that language. The other is by looking at how we feel using that language-how we feel while programming.",
|
|
19
|
+
"I believe that the purpose of life is, at least in part, to be happy. Based on this belief, Ruby is designed to make programming not only easy but also fun. It allows you to concentrate on the creative side of programming, with less stress.",
|
|
20
|
+
"Most programs are not write-once. They are reworked and rewritten again and again in their lived. Bugs must be debugged. Changing requirements and the need for increased functionality mean the program itself may be modified on an ongoing basis. During this process, human beings must be able to read and understand the original code. It is therefore more important by far for humans to be able to understand the program than it is for the computer.",
|
|
21
|
+
"I hope to see Ruby help every programmer in the world to be productive, and to enjoy programming, and to be happy. That is the primary purpose of Ruby language.",
|
|
22
|
+
"Man is driven to create; I know I really love to create things. And while I'm not good at painting, drawing, or music, I can write software.",
|
|
23
|
+
"It is not the responsibility of the language to force good looking code, but the language should make good looking code possible.",
|
|
24
|
+
"Plant a memory, plant a tree, do it today for tomorrow.",
|
|
25
|
+
"Imagine you are writing an email. You are in front of the computer. You are operating the computer, clicking a mouse and typing on a keyboard, but the message will be sent to a human over the internet. So you are working before the computer, but with a human behind the computer.",
|
|
26
|
+
"Often people, especially computer engineers, focus on the machines. But in fact we need to focus on humans, on how humans care about doing programming or operating the application of the machines.",
|
|
27
|
+
"Everyone has an individual background. Someone may come from Python, someone else may come from Perl, and they may be surprised by different aspects of the language. Then they come up to me and say, 'I was surprised by this feature of the language, so therefore Ruby violates the principle of least surprise.' Wait. Wait. The principle of least surprise is not for you only.",
|
|
28
|
+
"Sometimes people jot down pseudo-code on paper. If that pseudo-code runs directly on their computers, its best, isn't it? Ruby tries to be like that, like pseudo-code that runs. Python people say that too."
|
|
29
|
+
]
|
|
30
|
+
most_interesting_man_in_the_world: [
|
|
31
|
+
"His only regret is not knowing what regret feels like.",
|
|
32
|
+
"When in Rome, they do as HE does",
|
|
33
|
+
"He is considered a national treasure in countries he’s never visited.",
|
|
34
|
+
"He has won the lifetime achievement award… twice",
|
|
35
|
+
"He can kill two stones with one bird",
|
|
36
|
+
"When a tree falls in a forest and no one is there, he hears it",
|
|
37
|
+
"His lovemaking has been detected by a seismograph",
|
|
38
|
+
"He once had an awkward moment, just to see how it feels",
|
|
39
|
+
"He is fluent in all languages, including three that he only speaks",
|
|
40
|
+
"If opportunity knocks, and he’s not at home, opportunity waits",
|
|
41
|
+
"Mosquitoes refuse to bite him purely out of respect",
|
|
42
|
+
"He has taught old dogs a variety of new tricks",
|
|
43
|
+
"In museums, he is allowed to touch the art",
|
|
44
|
+
"His business card simply says ‘I’ll Call You”",
|
|
45
|
+
"If he was to pat you on the back, you would list it on your resume.",
|
|
46
|
+
"Freemasons strive to learn HIS secret handshake.",
|
|
47
|
+
"He played a game of Russian Roulette with a fully loaded magnum, and won",
|
|
48
|
+
"He is the life of parties that he has never attended",
|
|
49
|
+
"He once won the Tour-de-France, but was disqualified for riding a unicycle",
|
|
50
|
+
"His organ donation card also lists his beard",
|
|
51
|
+
"He is left-handed. And right-handed",
|
|
52
|
+
"Sharks have a week dedicated to him",
|
|
53
|
+
"Presidents take his birthday off",
|
|
54
|
+
"Time waits on no one, but him",
|
|
55
|
+
"He never wears a watch because time is always on his side",
|
|
56
|
+
"He taught Chuck Norris martial arts",
|
|
57
|
+
"When he holds a lady’s purse, he looks manly",
|
|
58
|
+
"He once won a staring contest with his own reflection",
|
|
59
|
+
"When he meets the Pope, the Pope kisses his ring",
|
|
60
|
+
"His beard alone has experienced more than a lesser man’s entire body",
|
|
61
|
+
"Superman has pijamas with his logo",
|
|
62
|
+
"If he were to punch you in the face you would have to fight off a strong urge to thank him",
|
|
63
|
+
"He once went to the psychic, to warn her",
|
|
64
|
+
"His feet don’t get blisters, but his shoes do",
|
|
65
|
+
"When he drives a car off the lot, its price increases in value",
|
|
66
|
+
"On every continent in the world, there is a sandwich named after him.",
|
|
67
|
+
"Once a rattlesnake bit him, after 5 days of excruciating pain, the snake finally died",
|
|
68
|
+
"His passport requires no photograph",
|
|
69
|
+
"He gave his father “the talk”",
|
|
70
|
+
"He can speak Russian… in French",
|
|
71
|
+
"His signature won a Pulitzer",
|
|
72
|
+
"Once while sailing around the world, he discovered a short cut",
|
|
73
|
+
"He once got pulled over for speeding, and the cop got the ticket",
|
|
74
|
+
"The dark is afraid of him",
|
|
75
|
+
"If he were to visit the dark side of the moon, it wouldn’t be dark",
|
|
76
|
+
"He once brought a knife to a gunfight… just to even the odds",
|
|
77
|
+
"He bowls overhand",
|
|
78
|
+
"A bird in his hand is worth three in the bush",
|
|
79
|
+
"He once started a fire using only dental floss and water",
|
|
80
|
+
"Roses stop to smell him",
|
|
81
|
+
"Bigfoot tries to get pictures of him",
|
|
82
|
+
"He once turned a vampire into a vegetarian",
|
|
83
|
+
"Batman watches Saturday morning cartoons about him",
|
|
84
|
+
"When he was young he once sent his parents to his room",
|
|
85
|
+
"His blood smells like cologne",
|
|
86
|
+
"When he goes to Spain, he chases the bulls",
|
|
87
|
+
"His shadow has been on the ‘best dressed’ list twice",
|
|
88
|
+
"Two countries went to war to dispute HIS nationality",
|
|
89
|
+
"His pillow is cool on BOTH sides",
|
|
90
|
+
"The Nobel Academy was awarded a prize from HIM",
|
|
91
|
+
"His mother has a tattoo that says “Son”",
|
|
92
|
+
"His shirts never wrinkle",
|
|
93
|
+
"Respected archaeologists fight over his discarded apple cores",
|
|
94
|
+
"His garden maze is responsible for more missing persons than the bermuda triangle",
|
|
95
|
+
"He doesn’t believe in using oven mitts, nor potholders",
|
|
96
|
+
"His cereal never gets soggy. It sits there, staying crispy, just for him",
|
|
97
|
+
"The police often question him, just because they find him interesting",
|
|
98
|
+
"He has never walked into a spider web",
|
|
99
|
+
"The star on his Christmas tree is tracked by NASA",
|
|
100
|
+
"He’s never lost a game of chance",
|
|
101
|
+
"He once caught the Loch Ness Monster….with a cane pole, but threw it back",
|
|
102
|
+
"His wallet is woven out of chupacabra leather",
|
|
103
|
+
"Cars look both ways for him, before driving down a street",
|
|
104
|
+
"His 5 de Mayo party starts on the 8th of March",
|
|
105
|
+
"His tears can cure cancer, too bad he never cries",
|
|
106
|
+
"His friends call him by his name, his enemies don’t call him anything because they are all dead",
|
|
107
|
+
"No less than 25 Mexican folk songs have been written about his beard",
|
|
108
|
+
"He once taught a german shepherd how to bark in Spanish",
|
|
109
|
+
"The Holy Grail is looking for him",
|
|
110
|
+
"Werewolves are jealous of his beard",
|
|
111
|
+
"Once he ran a marathon because it was “on the way”",
|
|
112
|
+
"He was on a recent archaeological dig and came across prehistoric foot prints that lead out of Africa into all parts of the world. On close inspection, it turned out that the prints were his",
|
|
113
|
+
"Whatever side of the tracks he’s currently on is the right side, even if he crosses the tracks he’ll still be on the right side",
|
|
114
|
+
"The circus ran away to join him",
|
|
115
|
+
"He once made a weeping willow laugh",
|
|
116
|
+
"He is allowed to talk about the fight club",
|
|
117
|
+
"His sweat is the cure for the common cold",
|
|
118
|
+
"While swimming off the coast of Australia, he once scratched the underbelly of the Great White with his right hand",
|
|
119
|
+
"If he were to say something costs an arm and a leg, it would",
|
|
120
|
+
"He never says something tastes like chicken.. not even chicken",
|
|
121
|
+
"Panhandlers give him money",
|
|
122
|
+
"He once tried to acquire a cold just to see what it felt like, but it didn’t take",
|
|
123
|
+
"His ten gallon hat holds twenty gallons",
|
|
124
|
+
"He once won the world series of poker using UNO cards",
|
|
125
|
+
"He has inside jokes with people he’s never met.",
|
|
126
|
+
"Bear hugs are what he gives bears",
|
|
127
|
+
"Even his tree houses have fully finished basements",
|
|
128
|
+
"He has never waited 15 minutes after finishing a meal before returning to the pool",
|
|
129
|
+
"He lives vicariously through himself"
|
|
130
|
+
]
|
|
131
|
+
robin: ["Holy Agility", "Holy Almost", "Holy Alphabet", "Holy Alps", "Holy Alter Ego", "Holy Anagram", "Holy Apparition", "Holy Armadillo", "Holy Armour Plate", "Holy Ashtray", "Holy Asp", "Holy Astronomy", "Holy Astringent Plum-like Fruit", "Holy Audubon", "Holy Backfire", "Holy Ball And Chain", "Holy Bank Balance", "Holy Bankruptcy", "Holy Banks", "Holy Bargain Basements", "Holy Barracuda", "Holy Bat Logic", "Holy Bat Trap", "Holy Batman", "Holy Benedict Arnold", "Holy Bijou", "Holy Bikini", "Holy Bill Of Rights", "Holy Birthday Cake", "Holy Black Beard", "Holy Blackout", "Holy Blank Cartridge", "Holy Blizzard", "Holy Blonde Mackerel Ash", "Holy Bluebeard", "Holy Bouncing Boiler Plate", "Holy Bowler", "Holy Bullseye", "Holy Bunions", "Holy Caffeine", "Holy Camouflage", "Holy Captain Nemo", "Holy Caruso", "Holy Catastrophe", "Holy Cat(s)", "Holy Chicken Coop", "Holy Chilblains", "Holy Chocolate Eclair", "Holy Cinderella", "Holy Cinemascope", "Holy Cliche", "Holy Cliffhangers", "Holy Clockwork", "Holy Clockworks", "Holy Cofax You Mean", "Holy Coffin Nails", "Holy Cold Creeps", "Holy Complications", "Holy Conflagration", "Holy Contributing to the Delinquency of Minors", "Holy Corpuscles", "Holy Cosmos", "Holy Costume Party", "Holy Crack Up", "Holy Crickets", "Holy Crossfire", "Holy Crucial Moment", "Holy Cryptology", "Holy D'artagnan", "Holy Davy Jones", "Holy Detonator", "Holy Disappearing Act", "Holy Distortion", "Holy Diversionary Tactics", "Holy Dr. Jekyll and Mr. Hyde", "Holy Egg Shells", "Holy Encore", "Holy Endangered Species", "Holy Epigrams", "Holy Escape-hatch", "Holy Explosion", "Holy Fate-worse-than-death", "Holy Felony", "Holy Finishing-touches", "Holy Fireworks", "Holy Firing Squad", "Holy Fishbowl", "Holy Flight Plan", "Holy Flip-flop", "Holy Flood Gate", "Holy Floor Covering", "Holy Flypaper", "Holy Fly Trap", "Holy Fog", "Holy Forecast", "Holy Fork In The Road", "Holy Fourth Amendment", "Holy Fourth Of July", "Holy Frankenstein", "Holy Frankenstein It's Alive", "Holy Fratricide", "Holy Frogman", "Holy Fruit Salad", "Holy Frying Towels", "Holy Funny Bone", "Holy Gall", "Holy Gambles", "Holy Gemini", "Holy Geography", "Holy Ghost Writer", "Holy Giveaways", "Holy Glow Pot", "Holy Golden Gate", "Holy Graf Zeppelin", "Holy Grammar", "Holy Graveyards", "Holy Greed", "Holy Green Card", "Holy Greetings-cards", "Holy Guacamole", "Holy Guadalcanal", "Holy Gullibility", "Holy Gunpowder", "Holy Haberdashery", "Holy Hailstorm", "Holy Hairdo", "Holy Hallelujah", "Holy Halloween", "Holy Hallucination", "Holy Hamburger", "Holy Hamlet", "Holy Hamstrings", "Holy Happenstance", "Holy Hardest Metal In The World", "Holy Harem", "Holy Harshin", "Holy Haziness", "Holy Headache", "Holy Headline", "Holy Heart Failure", "Holy Heartbreak", "Holy Heidelberg", "Holy Helmets", "Holy Helplessness", "Holy Here We Go Again", "Holy Hi-fi", "Holy Hieroglyphic", "Holy High-wire", "Holy Hijack", "Holy Hijackers", "Holy History", "Holy Hoaxes", "Holy Hole In A Donut", "Holy Hollywood", "Holy Holocaust", "Holy Homecoming", "Holy Homework", "Holy Homicide", "Holy Hoodwink", "Holy Hoof Beats", "Holy Hors D'Oeuvre", "Holy Horseshoes", "Holy Hostage", "Holy Hot Foot", "Holy Houdini", "Holy Human Collectors Item", "Holy Human Pearls", "Holy Human Pressure Cookers", "Holy Human Surfboards", "Holy Hunting Horn", "Holy Hurricane", "Holy Hutzpa", "Holy Hydraulics", "Holy Hypnotism", "Holy Hypodermics", "Holy Ice Picks", "Holy Ice Skates", "Holy Iceberg", "Holy Impossibility", "Holy Impregnability", "Holy Incantation", "Holy Inquisition", "Holy Interplanetary Yardstick", "Holy Interruptions", "Holy Iodine", "Holy IT and T", "Holy Jack In The Box", "Holy Jackpot", "Holy Jail Break", "Holy Jaw Breaker", "Holy Jelly Molds", "Holy Jet Set", "Holy Jigsaw Puzzles", "Holy Jitter Bugs", "Holy Joe", "Holy Journey To The Center Of The Earth", "Holy Jumble", "Holy Jumpin' Jiminy", "Holy Karats", "Holy Key Hole", "Holy Key Ring", "Holy Kilowatts", "Holy Kindergarten", "Holy Knit One Purl Two", "Holy Knock Out Drops", "Holy Known Unknown Flying Objects", "Holy Kofax", "Holy Las Vegas", "Holy Leopard", "Holy Levitation", "Holy Liftoff", "Holy Living End", "Holy Lodestone", "Holy Long John Silver", "Holy Looking Glass", "Holy Love Birds", "Holy Luther Burbank", "Holy Madness", "Holy Magic Lantern", "Holy Magician", "Holy Main Springs", "Holy Marathon", "Holy Mashed Potatoes", "Holy Masquerade", "Holy Matador", "Holy Mechanical Armies", "Holy Memory Bank", "Holy Merlin Magician", "Holy Mermaid", "Holy Merry Go Around", "Holy Mesmerism", "Holy Metronome", "Holy Miracles", "Holy Miscast", "Holy Missing Relatives", "Holy Molars", "Holy Mole Hill", "Holy Mucilage", "Holy Multitudes", "Holy Murder", "Holy Mush", "Holy Naive", "Holy New Year's Eve", "Holy Nick Of Time", "Holy Nightmare", "Holy Non Sequiturs", "Holy Oleo", "Holy Olfactory", "Holy One Track Bat Computer Mind", "Holy Oversight", "Holy Oxygen", "Holy Paderewski", "Holy Paraffin", "Holy Perfect Pitch", "Holy Pianola", "Holy Pin Cushions", "Holy Polar Front", "Holy Polar Ice Sheet", "Holy Polaris", "Holy Popcorn", "Holy Potluck", "Holy Pressure Cooker", "Holy Priceless Collection of Etruscan Snoods", "Holy Pseudonym", "Holy Purple Cannibals", "Holy Puzzlers", "Holy Rainbow", "Holy Rats In A Trap", "Holy Ravioli", "Holy Razors Edge", "Holy Recompense", "Holy Red Herring", "Holy Red Snapper", "Holy Reincarnation", "Holy Relief", "Holy Remote Control Robot", "Holy Reshevsky", "Holy Return From Oblivion", "Holy Reverse Polarity", "Holy Rheostat", "Holy Ricochet", "Holy Rip Van Winkle", "Holy Rising Hemlines", "Holy Roadblocks", "Holy Robert Louis Stevenson", "Holy Rock Garden", "Holy Rocking Chair", "Holy Romeo And Juliet", "Holy Rudder", "Holy Safari", "Holy Sarcophagus", "Holy Sardine", "Holy Scalding", "Holy Schizophrenia", "Holy Sedatives", "Holy Self Service", "Holy Semantics", "Holy Serpentine", "Holy Sewer Pipe", "Holy Shamrocks", "Holy Sherlock Holmes", "Holy Show-Ups", "Holy Showcase", "Holy Shrinkage", "Holy Shucks", "Holy Skull Tap", "Holy Sky Rocket", "Holy Slipped Disc", "Holy Smoke", "Holy Smokes", "Holy Smokestack", "Holy Snowball", "Holy Sonic Booms", "Holy Special Delivery", "Holy Spider Webs", "Holy Split Seconds", "Holy Squirrel Cage", "Holy Stalactites", "Holy Stampede", "Holy Standstills", "Holy Steam Valve", "Holy Stew Pot", "Holy Stomach Aches", "Holy Stratosphere", "Holy Stuffing", "Holy Subliminal", "Holy Sudden Incapacitation", "Holy Sundials", "Holy Surprise Party", "Holy Switch A Roo", "Holy Taj Mahal", "Holy Tartars", "Holy Taxation", "Holy Taxidermy", "Holy Tee Shot", "Holy Ten Toes", "Holy Terminology", "Holy Time Bomb", "Holy Tintinnabulation", "Holy Tipoffs", "Holy Titanic", "Holy Tome", "Holy Toreador", "Holy Trampoline", "Holy Transistors", "Holy Travel Agent", "Holy Trickery", "Holy Triple Feature", "Holy Trolls And Goblins", "Holy Tuxedo", "Holy Uncanny Photographic Mental Processes", "Holy Understatements", "Holy Underwritten Metropolis", "Holy Unlikelihood", "Holy Unrefillable Prescriptions", "Holy Vat", "Holy Venezuela", "Holy Vertebrae", "Holy Voltage", "Holy Waste Of Energy", "Holy Wayne Manor", "Holy Weaponry", "Holy Wedding Cake", "Holy Wernher von Braun", "Holy Whiskers", "Holy Wigs", "Holy Zorro"]
|
|
132
|
+
singular_siegler: [
|
|
133
|
+
"Texas!",
|
|
134
|
+
"Come on now",
|
|
135
|
+
"Turd gone wrong",
|
|
136
|
+
"I want my 5$ back",
|
|
137
|
+
"I tell you what",
|
|
138
|
+
"My buddy Harlen",
|
|
139
|
+
"Goin' hog huntin'",
|
|
140
|
+
"C'mon Naomi",
|
|
141
|
+
"Might be DQ time",
|
|
142
|
+
"That goddamn Datamate",
|
|
143
|
+
"That damn gimble",
|
|
144
|
+
"That Barbala couldn't fly his way out of a wet paper bag",
|
|
145
|
+
"So I was walking Oscar",
|
|
146
|
+
"How 'bout them Cowboys",
|
|
147
|
+
"Always the last one to the party",
|
|
148
|
+
"Standby",
|
|
149
|
+
"No one tells me shit",
|
|
150
|
+
"My boss gonna fire me",
|
|
151
|
+
"That damn Bill Stull",
|
|
152
|
+
"Like a red-headed stepchild",
|
|
153
|
+
"Y'all never listen to me",
|
|
154
|
+
"It's around here somewhere",
|
|
155
|
+
"Reminds me of my old girlfriend Olga Goodntight",
|
|
156
|
+
"Let me tell ya",
|
|
157
|
+
"I got that scurvy",
|
|
158
|
+
"Got depression, Smith and Wessen",
|
|
159
|
+
"I'm washing my hands of it",
|
|
160
|
+
"Yup",
|
|
161
|
+
"Contact the tower",
|
|
162
|
+
"That damn diabetes",
|
|
163
|
+
"That's messed up",
|
|
164
|
+
"I want my damn cart back"
|
|
165
|
+
]
|
|
166
|
+
yoda: ["Use your feelings, Obi-Wan, and find him you will.", "Already know you that which you need.", "Adventure. Excitement. A Jedi craves not these things.", "At an end your rule is, and not short enough it was!", "Around the survivors a perimeter create.", "Soon will I rest, yes, forever sleep. Earned it I have. Twilight is upon me, soon night must fall.", "Not if anything to say about it I have", "Through the Force, things you will see. Other places. The future - the past. Old friends long gone.", "Ow, ow, OW! On my ear you are!", "The dark side clouds everything. Impossible to see the future is.", "Size matters not. Look at me. Judge me by my size, do you? Hmm? Hmm. And well you should not. For my ally is the Force, and a powerful ally it is. Life creates it, makes it grow. Its energy surrounds us and binds us. Luminous beings are we, not this crude matter. You must feel the Force around you; here, between you, me, the tree, the rock, everywhere, yes. Even between the land and the ship.", "Younglings, younglings gather ’round.", "Luminous beings are we - not this crude matter.", "Clear your mind must be, if you are to find the villains behind this plot.", "Always two there are, no more, no less. A master and an apprentice.", "Do. Or do not. There is no try.", "Much to learn you still have my old padawan. ... This is just the beginning!", "Good relations with the Wookiees, I have.", "Ready are you? What know you of ready? For eight hundred years have I trained Jedi. My own counsel will I keep on who is to be trained. A Jedi must have the deepest commitment, the most serious mind. This one a long time have I watched. All his life has he looked away - to the future, to the horizon. Never his mind on where he was. Hmm? What he was doing. Hmph. Adventure. Heh. Excitement. Heh. A Jedi craves not these things. You are reckless.", "Truly wonderful, the mind of a child is.", "Always pass on what you have learned.", "Once you start down the dark path, forever will it dominate your destiny, consume you it will.", "Mudhole? Slimy? My home this is!", "Yes, a Jedi’s strength flows from the Force. But beware of the dark side. Anger, fear, aggression; the dark side of the Force are they. Easily they flow, quick to join you in a fight. If once you start down the dark path, forever will it dominate your destiny, consume you it will, as it did Obi-Wan’s apprentice.", "Do not assume anything Obi-Wan. Clear your mind must be if you are to discover the real villains behind this plot.", "Death is a natural part of life. Rejoice for those around you who transform into the Force. Mourn them do not. Miss them do not. Attachment leads to jealously. The shadow of greed, that is.", "Like fire across the galaxy the Clone Wars spread. In league with the wicked Count Dooku, more and more planets slip. Against this threat, upon the Jedi Knights falls the duty to lead the newly formed army of the Republic. And as the heat of war grows, so, to, grows the prowess of one most gifted student of the Force.", "Hmm. In the end, cowards are those who follow the dark side.", "Strong is Vader. Mind what you have learned. Save you it can.", "Pain, suffering, death I feel. Something terrible has happened. Young Skywalker is in pain. Terrible pain", "Difficult to see. Always in motion is the future...", "You will find only what you bring in.", "Feel the force!", "Reckless he is. Matters are worse.", "That is why you fail.", "Your weapons, you will not need them.", "To answer power with power, the Jedi way this is not. In this war, a danger there is, of losing who we are."]
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
relationship:
|
|
4
|
+
familial:
|
|
5
|
+
direct: ['Father', 'Mother', 'Sister', 'Brother']
|
|
6
|
+
extended: ['Grandfather', 'Grandmother', 'Uncle', 'Aunt', 'Cousin', 'Niece', 'Nephew', 'Grandson', 'Granddaughter']
|
|
7
|
+
in_law: ['Father-in-law', 'Mother-in-law', 'Sister-in-law', 'Brother-in-law']
|
|
8
|
+
spouse: ['Husband', 'Wife']
|
|
9
|
+
parent: ['Father', 'Mother']
|
|
10
|
+
sibling: ['Sister', 'Brother']
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
restaurant:
|
|
4
|
+
name_prefix:
|
|
5
|
+
- "??"
|
|
6
|
+
- "???"
|
|
7
|
+
- "##"
|
|
8
|
+
- "###"
|
|
9
|
+
- "####"
|
|
10
|
+
- Belly
|
|
11
|
+
- Big
|
|
12
|
+
- Blue Plate
|
|
13
|
+
- Fast
|
|
14
|
+
- Fat
|
|
15
|
+
- Golden
|
|
16
|
+
- Hungry
|
|
17
|
+
- Salty
|
|
18
|
+
- Silver
|
|
19
|
+
- Smokestack
|
|
20
|
+
- Spice
|
|
21
|
+
- Sugar
|
|
22
|
+
- Sweet
|
|
23
|
+
- Thirsty
|
|
24
|
+
- Red
|
|
25
|
+
- Blue
|
|
26
|
+
- Green
|
|
27
|
+
- Orange
|
|
28
|
+
name_suffix:
|
|
29
|
+
- Bakery
|
|
30
|
+
- Bar & Grill
|
|
31
|
+
- BBQ
|
|
32
|
+
- Box
|
|
33
|
+
- Brasserie
|
|
34
|
+
- Burger
|
|
35
|
+
- Cafe
|
|
36
|
+
- Coffee
|
|
37
|
+
- Creamery
|
|
38
|
+
- Curry
|
|
39
|
+
- Deli
|
|
40
|
+
- Diner
|
|
41
|
+
- Dragon
|
|
42
|
+
- Eatery
|
|
43
|
+
- Eats
|
|
44
|
+
- Gastropub
|
|
45
|
+
- Grill
|
|
46
|
+
- Grill & Tap
|
|
47
|
+
- House
|
|
48
|
+
- Juice Bar
|
|
49
|
+
- King
|
|
50
|
+
- Kitchen
|
|
51
|
+
- Pizza
|
|
52
|
+
- Pub
|
|
53
|
+
- Shakes
|
|
54
|
+
- Spoon
|
|
55
|
+
- Steakhouse
|
|
56
|
+
- Subs
|
|
57
|
+
- Sushi
|
|
58
|
+
name:
|
|
59
|
+
- "#{name_prefix} #{name_suffix}"
|
|
60
|
+
type:
|
|
61
|
+
- African
|
|
62
|
+
- American (New)
|
|
63
|
+
- American (Traditional)
|
|
64
|
+
- Argentinian
|
|
65
|
+
- Asian
|
|
66
|
+
- Bakery
|
|
67
|
+
- Bar
|
|
68
|
+
- Brazilian
|
|
69
|
+
- Burgers
|
|
70
|
+
- Caribbean
|
|
71
|
+
- Chinese
|
|
72
|
+
- Comfort Food
|
|
73
|
+
- Desserts
|
|
74
|
+
- Ethiopean
|
|
75
|
+
- European
|
|
76
|
+
- French
|
|
77
|
+
- German
|
|
78
|
+
- Greek
|
|
79
|
+
- Healthy
|
|
80
|
+
- Ice Cream
|
|
81
|
+
- Indian
|
|
82
|
+
- Italian
|
|
83
|
+
- Japanese
|
|
84
|
+
- Juice & Smoothies
|
|
85
|
+
- Korean
|
|
86
|
+
- Mexican
|
|
87
|
+
- Pizza
|
|
88
|
+
- Ramen
|
|
89
|
+
- Sandwiches
|
|
90
|
+
- Senegalese
|
|
91
|
+
- Sushi
|
|
92
|
+
- Tex Mex
|
|
93
|
+
- Thai
|
|
94
|
+
- Vegan
|
|
95
|
+
- Vegetarian
|
|
96
|
+
- Vietnamese
|
|
97
|
+
description:
|
|
98
|
+
- "To ensure that each guest receives prompt, professional, friendly and courteous service. To maintain a clean, comfortable and well maintained premises for our guests and staff. To provide at a fair price – nutritional, well-prepared meals – using only quality ingredients. To ensure that all guests and staff are treated with the respect and dignity they deserve. To thank each guest for the opportunity to serve them. By maintaining these objectives we shall be assured of a fair profit that will allow us to contribute to the community we serve."
|
|
99
|
+
- "To sell delicious and remarkable food and drinks. That the food and drink we sell meets the highest standards of quality, freshness and seasonality and combines both modern-creative and traditional southern styles of cooking. To consistently provide our customers with impeccable service by demonstrating warmth, graciousness, efficiency, knowledge, professionalism and integrity in our work. To have every customer who comes through our doors leave impressed by Maxie’s and excited to come back again. To create and maintain a restaurant that is comprehensive and exceptional in its attention to every detail of operation. To provide all who work with us a friendly, cooperative and rewarding environment which encourages long- term, satisfying, growth employment. To keep our concept fresh, exciting and on the cutting edge of the hospitality and entertainment industry. To be a giving member of the Ithaca community and to use our restaurant to improve the quality of life in the Finger Lakes region."
|
|
100
|
+
- "We are committed to using the finest ingredients in our recipes. No food leaves our kitchen that we ourselves would not eat."
|
|
101
|
+
- "To achieve and maintain such distinction in food and wine, service, atmosphere and setting that the restaurant gains a first class reputation for gastronomy, gracious and informed hospitality, comfort and beauty which draws new and repeat customers year after year. To achieve the above whilst upholding staff policies and practices which promote a fair and positive working environment. To be aware of and act on our responsibilities as a good corporate citizen to provide a safe, clean and attractive place for guests to enjoy and for employees to work in - ensure ecologically sound management practices at the restaurant and in our surrounding gardens and woods - undertake meaningful involvement of Restaurant Les Fougères in selected charitable activities in our community and region."
|
|
102
|
+
- "To provide an exceptional dining experience that satisfies our guests’ grown-up tastes by being a Cut-Above in everything we do."
|
|
103
|
+
- "Our Mission at Denny’s is to establish beneficial business relationships with diverse suppliers who share our commitment to customer service, quality and competitive pricing."
|
|
104
|
+
- "Yoshinoya is in business to create the structure and systems needed to allow our customers access to the majority of their away-from-home daily meal requirements on a one-stop-shop basis. All our products shall be of the highest quality and value, be healthy, nutritious and provided with outstanding personal services at the lowest possible prices consistent with a fair return on investment for our shareholders, job enhancementsecurity for our employees and a level of community involvement by everyone connected with our business. All of our products and services shall be delivered consistently and measured one satisfied customer at a time, whether by company-owned or franchised operations, in superior, clean, convenient, fun and friendly neighborhood environments. We pledge to make Yoshinoya the best place to eat and the best place to work."
|
|
105
|
+
- "Culver’s Restaurant was founded by the Culver family in 1984, which eventually branched out to more than 300 franchised restaurants all over the US. Culver’s is well-known for its ButterBurger, which made the restaurant extremely famous. They also have other items which include salads, sandwiches, desserts, etc."
|
|
106
|
+
- "Our mission is to be a leader in the distribution and merchandising of food, pharmacy, health and personal care items, seasonal merchandise, and related products and services. We place considerable importance on forging strong supplier partnerships. Our suppliers, large or small, local or global, are essential components in accomplishing our mission."
|
|
107
|
+
- "We earn the loyalty of the people we serve by first anticipating, then fulfilling their needs with our superior-quality products, a unique shopping experience, customer-focused service and continuous innovation, while generating long-term profitable growth for our shareholders."
|
|
108
|
+
- "Delhaize Group will achieve leading positions in food retailing in key mature and emerging markets. We accomplish our goal by developing strong regional companies benefiting from and contributing to the Groups strength, expertise and successful practices. Delhaize Group goes to market with a variety of food store formats. The Group is committed to offer a locally differentiated shopping experience to its customers in each of its markets, to deliver superior value and to maintain high social, environmental and ethical standards."
|
|
109
|
+
- "SVIs mission is to deliver quality products at affordable prices to our independent retailers, wholesalers and food service partners around the world by providing international procurement, distribution, marketing and supply chain management."
|
|
110
|
+
- "Our mission has been to help people achieve their health and wellness goals. though weve changed over the years, our values have remained the same."
|
|
111
|
+
- "To deliver an exceptional shopping experience by offering the best service, value, quality, and freshest products while being good stewards of our environment and giving back to the communities we serve."
|
|
112
|
+
review:
|
|
113
|
+
- "For dinner we ordered the shrimp enchiladas, chicken enchiladas, chicken burrito, chimichangas, and steak quesadillas. Everything was so tasty and amazing. I wasnt surprised because the food at the FiDi location is the best so I figured this location would be just as good and it was!!! The enchiladas with the green sauce is to die for. My go to at the FiDi location is usually the chicken enchiladas but I decided to try something new and the shrimp enchiladas did not disappoint."
|
|
114
|
+
- "For dessert, we ordered the chocolate drizzled churros and they were delicious too! They even came with some fresh fruit (blueberries and strawberries)."
|
|
115
|
+
- "Overall, the evening was a smash and I am so glad there is a new location closer to my office!!"
|
|
116
|
+
- "Brand new. Great design. Odd to hear pop music in a Mexican establishment. Music is a bit loud. It should be background."
|
|
117
|
+
- "The chicken nachos were delicious and the atmosphere was great. The frozen margaritas were a little on the weak side. Would probably return for a work happy hour but was pretty disappointed about the lack of free tequila and beer we read about!"
|
|
118
|
+
- "The counter is on the left side, and so is the menu. It can get pretty busy with 30 min wait times. I recommend checking the website and see how busy their store is."
|
|
119
|
+
- "They are way understaffed, where the cashier needs to stop taking orders to help pack to-go orders. The line ends up piling up and people are neglected. Seen this happen multiple times during lunch hours."
|
|
120
|
+
- "This particular location like the many other restaurants down the block has ample seating and a second floor."
|
|
121
|
+
- "I first heard about this place through Instagram post. The drinks looked creative so I made it a point to give it try while in the city. Located inside American Eagle in Times Square they serve up the coolest non-alcoholic beverages. You have an array of options from tea, soda, coffee, latte, water and more. Theres countertops (with phone chargers) so youre able to stand and enjoy your beverage. This visit I opted for the Pegasus latte which was not only beautiful but tasted just as good as it looked. Great staff and great service. This is a must try if you are in the area. Im sure Ill be back soon!"
|
|
122
|
+
- "Great place to stop in from a chaotic Times Square adventure! The coffee is great, the drinks are creative and the staff is very nice and hospitable. Cant wait to stop in again. Without a doubt 5 stars from me!!"
|
|
123
|
+
- "Great lattes and cold drinks as well. Nice to see a place carrying local coffee and products in Times Square! Excited to make it a part of my morning commute as it is much less crowded than the chain coffee shops around here."
|
|
124
|
+
- "Fish was high quality but portions were small. $57 for 9 pieces and a hand roll which is fair but on the expensive side."
|
|
125
|
+
- "Ambience was good, service was no nonsense but friendly."
|
|
126
|
+
- "Id have to say that each piece was fresh and had their own slight unique flavor twist to it, pushing the line between traditional edomae and fusion. The Hokkaido uni and the ocean trout topped with cook seaweed was the highlights of the meal. But each piece served was really something special."
|
|
127
|
+
- "Staff was very accommodating but the chef were no nonsense. The ambiance is clean and tranquil which is perfect if youre looking to have a conversation with a date or a friend."
|
|
128
|
+
- "My only critique would be that the rice could of used more vingaer and for them to use real wasabi. Also the variety of fish in stock wasnt a lot but hopefully that can change over time. The cost justify the quality youre getting. A solid 4 stars."
|
|
129
|
+
- "In terms of omakase, they had a few options but the one we chose was the 87 dollar version which include sashimi and sushi."
|
data/lib/locales/en/seinfeld.yml
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
en:
|
|
2
2
|
faker:
|
|
3
3
|
seinfeld:
|
|
4
|
-
character: ["George Costanza", "Kramer", "Elaine Benes", "Newman", "Jerry Seinfeld", "Frank Costanza", "Morty Seinfeld", "Estelle Costanza", "Susan Ross", "Helen Seinfeld", "J Peterman", "Uncle Leo", "David Puddy", "Justin Pitt", "Kenny Bania", "Crazy Joe Davola", "Jackie Chiles", "Jack Klompus", "Ruthie Cohen", "Tim Whatley", "Sue Ellen", "Bob Sacamano", "Babs Kramer", "Babu Bhatt", "George Steinbrenner", "Mickey Abbott", "Mr. Lippman", "Mr. Wilhelm", "Russell Dalrymple"]
|
|
4
|
+
character: ["George Costanza", "Kramer", "Elaine Benes", "Newman", "Jerry Seinfeld", "Frank Costanza", "Morty Seinfeld", "Estelle Costanza", "Susan Ross", "Helen Seinfeld", "J Peterman", "Uncle Leo", "David Puddy", "Justin Pitt", "Kenny Bania", "Crazy Joe Davola", "Jackie Chiles", "Jack Klompus", "Ruthie Cohen", "Tim Whatley", "Sue Ellen Mischke", "Bob Sacamano", "Babs Kramer", "Babu Bhatt", "George Steinbrenner", "Mickey Abbott", "Mr. Lippman", "Mr. Wilhelm", "Russell Dalrymple"]
|
|
5
5
|
quote: ["I'm not a lesbian. I hate men, but I'm not a lesbian.", "You're gonna over-dry your laundry.", "This isn't a good time.", "That’s the true spirit of Christmas; people being helped by people other than me.", "You’re becoming one of the glitterati.", "Father, I’ve never done this before, so I’m not sure about what I’m supposed to do.", "She’s one of those low-talkers. You can’t hear a word she’s saying!", "Why do they make the condom packets so hard to open?", "This woman hates me so much, I’m starting to like her.", "I've driven women to lesbianism before, but never a mental institution.", "You know I always wanted to pretend I was an architect", "Borrowing money from a friend is like having sex. It just completely changes the relationship.", "When you look annoyed all the time, people think that you're busy.", "I spend so much time trying to get their clothes off, I never thought of taking mine off.", "If you can't say something bad about a relationship, you shouldn't say anything at all.", "I need the secure packaging of Jockeys. My boys needs a house!", "The sea was angry that day, my friends, like an old man trying to send back soup in a deli...", "Elaine, breaking up is like knocking over a Coke machine. You can’t do it in one push; you gotta rock it back and forth a few times and then it goes over.", "Looking at cleavage is like looking at the sun. You don't stare at it. It's too risky. Ya get a sense of it and then you look away.", "You have the chicken, the hen, and the rooster. The chicken goes with the hen... So who is having sex with the rooster?", "I lie every second of the day. My whole life is a sham.", "Just remember, when you control the mail, you control... information.", "I don't think I've ever been to an appointment in my life where I wanted the other guy to show up.", "You, my friend, have crossed the line between man and bum.", "You should've seen her face. It was the exact same look my father gave me when I told him I wanted to be a ventriloquist.", "Did you know that the original title for War and Peace was War, What Is It Good For?", "Sex, that’s meaningless, I can understand that, but dinner; that’s heavy. That’s like an hour.", "Jerry, just remember, it's not a lie if you believe it.", "These pretzels are makin' me thirsty.", "It became very clear to me sitting out there today that every decision I've made in my entire life has been wrong. My life is the complete opposite of everything I want it to be. Every instinct I have, in every aspect of life, be it something to wear, something to eat - it's all been wrong.", "I had a dream last night that a hamburger was eating me.", "I have been performing feats of strength all morning.", "Hi, my name is George, I'm unemployed and I live with my parents.", "I don't trust the guy. I think he regifted, then he degifted, and now he's using an upstairs invite as a springboard to a Super bowl sex romp.", "Yes, I hope my parents die long before I do.", "See, this is what the holidays are all about. Three buddies sitting around chewing gum.", "Dolores!", "I'll be back. We'll make out.", "I'm sorry to bother you, but I'm a US postal worker and my mail truck was just ambushed by a band of backwoods mail-hating survivalists.", "You very bad man, Jerry. Very bad man.", "No soup for you!", "Serenity now!", "I'm out there Jerry, and I'm loving every minute of it!", "I'm out of the contest!", "You're killing independent George!", "Not that there's anything wrong with that.", "Yadda, yadda, yadda.", "They're real, and they're spectacular.", "She has man hands.", "And you want to be my latex salesman.", "He's a close talker.", "It's a Festivus for the rest of us.", "I want to be the one person who doesn't die with dignity.", "You, my friend, have crossed the line between man and bum.", "You were necking during Schindler's List?"]
|
|
6
|
+
business: ["Champagne Video", "Joe's Fruit Shop", "Kruger Industrial Smoothing", "Vandelay Industries", "Kramerica Industries", "J. Peterman Catalog", "Tom's Restaurant", "Reggies", "Mendy's", "Sunshine Carpet Cleaners", "Brandt-Leland", "H and H Bagels", "Play Now", "Top of the Muffin to You!", "Oh Henry!", "P B and J's", "Poppie's", "Sagman, Bennett, Robbins, Oppenheim and Taft", "Pendant Publishing", "Dream Cafe", "Doubleday", "Tyler Chicken", "Royal Bakery"]
|
|
@@ -0,0 +1,410 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
games:
|
|
4
|
+
sonic_the_hedgehog:
|
|
5
|
+
zone:
|
|
6
|
+
- Aerobase Zone
|
|
7
|
+
- Angel Island Zone
|
|
8
|
+
- Aqua Lake Zone
|
|
9
|
+
- Aqua Planet Zone
|
|
10
|
+
- Aquatic Relix Zone
|
|
11
|
+
- Aquatic Ruin Zone
|
|
12
|
+
- Atomic Destroyer Zone
|
|
13
|
+
- Azure Lake Zone
|
|
14
|
+
- Balloon Park Zone
|
|
15
|
+
- Beach Zone
|
|
16
|
+
- Blue Coast Zone
|
|
17
|
+
- Blue Marine Zone
|
|
18
|
+
- Blue Ridge Zone
|
|
19
|
+
- Blue Sky Zone
|
|
20
|
+
- Bonus Zone
|
|
21
|
+
- Boss Attack Zone
|
|
22
|
+
- Bridge Zone
|
|
23
|
+
- Carnival Night Zone
|
|
24
|
+
- Carrier Zone
|
|
25
|
+
- Casino Night Zone
|
|
26
|
+
- Casino Paradise Zone
|
|
27
|
+
- Casino Street Zone
|
|
28
|
+
- Chaotic Inferno Zone
|
|
29
|
+
- Chaotic Space Zone
|
|
30
|
+
- Chemical Plant Zone
|
|
31
|
+
- Chrome Gadget Zone
|
|
32
|
+
- Colosseum Highway Zone
|
|
33
|
+
- Cosmic Angel Zone
|
|
34
|
+
- Cosmic Casino Zone
|
|
35
|
+
- Cosmic Zone
|
|
36
|
+
- Crystal Egg Zone
|
|
37
|
+
- Crystal Mountain Zone
|
|
38
|
+
- Cyber City Zone
|
|
39
|
+
- Death Egg Zone
|
|
40
|
+
- Death Egg mk.II Zone
|
|
41
|
+
- Death Yard Zone
|
|
42
|
+
- Desert Palace Zone
|
|
43
|
+
- Diamond Dust Zone
|
|
44
|
+
- Dust Hill Zone
|
|
45
|
+
- E.G.G. Station Zone
|
|
46
|
+
- Egg Gauntlet Zone
|
|
47
|
+
- Egg Reverie Zone
|
|
48
|
+
- Egg Rocket Zone
|
|
49
|
+
- Electric Egg Zone
|
|
50
|
+
- Emerald Hill Zone
|
|
51
|
+
- Endless Mine Zone
|
|
52
|
+
- Final Zone
|
|
53
|
+
- Flying Battery Zone
|
|
54
|
+
- Forest Falls Zone
|
|
55
|
+
- Frontier Canyon Zone
|
|
56
|
+
- Gene Gadget Zone
|
|
57
|
+
- Genocide City Zone
|
|
58
|
+
- Gigalopolis Zone
|
|
59
|
+
- Gigantic Angel Zone
|
|
60
|
+
- Gimmick Mountain Zone
|
|
61
|
+
- Great Turquoise Zone
|
|
62
|
+
- Green Grove Zone
|
|
63
|
+
- Green Hill Zone
|
|
64
|
+
- Green Hills Zone
|
|
65
|
+
- Hidden Palace Zone
|
|
66
|
+
- Hill Top Zone
|
|
67
|
+
- Hydrocity Zone
|
|
68
|
+
- Ice Mountain Zone
|
|
69
|
+
- IceCap Zone
|
|
70
|
+
- Jungle Zone
|
|
71
|
+
- Labyrinth Zone
|
|
72
|
+
- Last Utopia Zone
|
|
73
|
+
- Launch Base Zone
|
|
74
|
+
- Lava Reef Zone
|
|
75
|
+
- Lost Labyrinth Zone
|
|
76
|
+
- Mad Gear Zone
|
|
77
|
+
- Marble Garden Zone
|
|
78
|
+
- Marble Zone
|
|
79
|
+
- Mecha Green Hill Zone
|
|
80
|
+
- Mechanical Zone
|
|
81
|
+
- Meta Junglira Zone
|
|
82
|
+
- Metallic Madness Zone
|
|
83
|
+
- Meteor Base Zone
|
|
84
|
+
- Metropolis Zone
|
|
85
|
+
- Mirage Saloon Zone
|
|
86
|
+
- Mountain Zone
|
|
87
|
+
- Mushroom Hill Zone
|
|
88
|
+
- Mystic Cave Zone
|
|
89
|
+
- Mystic Haunt Zone
|
|
90
|
+
- Nature Zone
|
|
91
|
+
- Neo Green Hill Zone
|
|
92
|
+
- Neo South Island Zone
|
|
93
|
+
- Neon Palace Zone
|
|
94
|
+
- Nightmare Zone
|
|
95
|
+
- Oil Desert Zone
|
|
96
|
+
- Oil Ocean Zone
|
|
97
|
+
- Panic Puppet Zone
|
|
98
|
+
- Press Garden Zone
|
|
99
|
+
- Proto Palace Zone
|
|
100
|
+
- Red Volcano Zone
|
|
101
|
+
- Robotnik Winter Zone
|
|
102
|
+
- Rusty Ruin Zone
|
|
103
|
+
- Sandopolis Zone
|
|
104
|
+
- Scrambled Egg Zone
|
|
105
|
+
- Scrap Brain Zone
|
|
106
|
+
- Seaside Hill Zone
|
|
107
|
+
- Secret Base Zone
|
|
108
|
+
- Secret Plant Zone
|
|
109
|
+
- Silver Castle Zone
|
|
110
|
+
- Sky Base Zone
|
|
111
|
+
- Sky Chase Zone
|
|
112
|
+
- Sky Fortress Zone
|
|
113
|
+
- Sky High Zone
|
|
114
|
+
- Sky Park Zone
|
|
115
|
+
- Sky Sanctuary Zone
|
|
116
|
+
- Sleeping Egg Zone
|
|
117
|
+
- Splash Hill Zone
|
|
118
|
+
- Spring Stadium Zone
|
|
119
|
+
- Spring Yard Zone
|
|
120
|
+
- Star Light Zone
|
|
121
|
+
- Stardust Speedway Zone
|
|
122
|
+
- Studiopolis Zone
|
|
123
|
+
- Sunset Forest Zone
|
|
124
|
+
- Sunset Park Zone
|
|
125
|
+
- Sylvania Castle Zone
|
|
126
|
+
- Temple Zone
|
|
127
|
+
- The Doomsday Zone
|
|
128
|
+
- The Legend of Zelda Zone
|
|
129
|
+
- The Moon Zone
|
|
130
|
+
- Tidal Plant Zone
|
|
131
|
+
- Titanic Monarch Zone
|
|
132
|
+
- Turquoise Hill Zone
|
|
133
|
+
- Under Ground Zone
|
|
134
|
+
- Volcano Valley Zone
|
|
135
|
+
- White Park Zone
|
|
136
|
+
- Wing Fortress Zone
|
|
137
|
+
- Wood Zone
|
|
138
|
+
- X-Zone
|
|
139
|
+
- Yellow Desert Zone
|
|
140
|
+
- Yoshi's Island Zone
|
|
141
|
+
character:
|
|
142
|
+
- Alf-Layla-wa-Layla
|
|
143
|
+
- Ali Baba
|
|
144
|
+
- Amy Rose
|
|
145
|
+
- Ashura
|
|
146
|
+
- Avatar
|
|
147
|
+
- Badnik
|
|
148
|
+
- Bark the Polar Bear
|
|
149
|
+
- Battle Kukku 16th
|
|
150
|
+
- Bean the Dynamite
|
|
151
|
+
- Bearenger
|
|
152
|
+
- Big the Cat
|
|
153
|
+
- Biolizard
|
|
154
|
+
- Black Doom
|
|
155
|
+
- Blacksmith
|
|
156
|
+
- Blaze the Cat
|
|
157
|
+
- Caliburn
|
|
158
|
+
- Captain Whisker
|
|
159
|
+
- Carrotia
|
|
160
|
+
- Chaos
|
|
161
|
+
- Chaos Gamma
|
|
162
|
+
- Charmy Bee
|
|
163
|
+
- Cheese the Chao
|
|
164
|
+
- Chip
|
|
165
|
+
- Chocola the Chao
|
|
166
|
+
- Cream the Rabbit
|
|
167
|
+
- Cubot
|
|
168
|
+
- Dark Gaia
|
|
169
|
+
- Dark Super Sonic
|
|
170
|
+
- Darkspine Sonic
|
|
171
|
+
- Doctor Fukurokov
|
|
172
|
+
- Doctor Zachary
|
|
173
|
+
- Don Fachio
|
|
174
|
+
- Dr. Eggman
|
|
175
|
+
- Duke of Soleanna
|
|
176
|
+
- E-10000B
|
|
177
|
+
- E-10000G
|
|
178
|
+
- E-10000R
|
|
179
|
+
- E-101 β
|
|
180
|
+
- E-101mkII
|
|
181
|
+
- E-102 γ
|
|
182
|
+
- E-103 δ
|
|
183
|
+
- E-104 ε
|
|
184
|
+
- E-105 ζ
|
|
185
|
+
- E-121 Phi
|
|
186
|
+
- E-123 Ω
|
|
187
|
+
- Edmund
|
|
188
|
+
- Eggman Nega
|
|
189
|
+
- Eggrobo
|
|
190
|
+
- Princess Elise the Third
|
|
191
|
+
- Emerl
|
|
192
|
+
- Erazor Djinn
|
|
193
|
+
- Espio the Chameleon
|
|
194
|
+
- Fang the Sniper
|
|
195
|
+
- Focke-Wulf
|
|
196
|
+
- Froggy
|
|
197
|
+
- G-merl
|
|
198
|
+
- G.U.N. Commander
|
|
199
|
+
- Gaia Colossus
|
|
200
|
+
- Gerald Robotnik
|
|
201
|
+
- Grand Battle Kukku 15th
|
|
202
|
+
- Has Bean
|
|
203
|
+
- Heavy
|
|
204
|
+
- Bomb
|
|
205
|
+
- Honey the Cat
|
|
206
|
+
- Iblis
|
|
207
|
+
- Ifrit
|
|
208
|
+
- Ifrit Golem
|
|
209
|
+
- Illumina
|
|
210
|
+
- Infinite
|
|
211
|
+
- Ix
|
|
212
|
+
- Jet the Hawk
|
|
213
|
+
- Johnny
|
|
214
|
+
- Julie-su
|
|
215
|
+
- King Arthur
|
|
216
|
+
- King Boom Boo
|
|
217
|
+
- King Shahryār
|
|
218
|
+
- Knuckles the Echidna
|
|
219
|
+
- Lily
|
|
220
|
+
- Luigi
|
|
221
|
+
- Lumina Flowlight
|
|
222
|
+
- Maria Robotnik
|
|
223
|
+
- Marine the Raccoon
|
|
224
|
+
- Mario
|
|
225
|
+
- Master Core ABIS
|
|
226
|
+
- Master Zik
|
|
227
|
+
- Mecha Knuckles
|
|
228
|
+
- Mecha Sonic
|
|
229
|
+
- Mephiles the Dark
|
|
230
|
+
- Merlin
|
|
231
|
+
- Merlina the Wizard
|
|
232
|
+
- Metal Knuckles
|
|
233
|
+
- Metal Sonic
|
|
234
|
+
- Metal Sonic 3.0
|
|
235
|
+
- Mighty the Armadillo
|
|
236
|
+
- Mii
|
|
237
|
+
- Miles "Tails" Prower
|
|
238
|
+
- Mr. Needlemouse
|
|
239
|
+
- Neo Metal Sonic
|
|
240
|
+
- NiGHTS
|
|
241
|
+
- Nimue, Lady of the Lake
|
|
242
|
+
- Omochao
|
|
243
|
+
- Orbot
|
|
244
|
+
- Pachacamac
|
|
245
|
+
- Perfect Chaos
|
|
246
|
+
- President of the United Federation
|
|
247
|
+
- Professor Pickle
|
|
248
|
+
- Ray the Flying Squirrel
|
|
249
|
+
- Rocket Metal
|
|
250
|
+
- Rouge the Bat
|
|
251
|
+
- Scourge the Hedgehog
|
|
252
|
+
- SCR-GP
|
|
253
|
+
- SCR-HD
|
|
254
|
+
- Shade
|
|
255
|
+
- Shadow Android
|
|
256
|
+
- Shadow the Hedgehog
|
|
257
|
+
- Shahra, the Genie of the Ring
|
|
258
|
+
- Shugo-hei
|
|
259
|
+
- Silver the Hedgehog
|
|
260
|
+
- Sinbad
|
|
261
|
+
- Sir Galahad
|
|
262
|
+
- Sir Gawain
|
|
263
|
+
- Sir Lamorak
|
|
264
|
+
- Sir Lancelot
|
|
265
|
+
- Sir Percival
|
|
266
|
+
- Solaris
|
|
267
|
+
- Sonic the Hedgehog
|
|
268
|
+
- Sticks the Badger
|
|
269
|
+
- Storm the Albatross
|
|
270
|
+
- Tails Doll
|
|
271
|
+
- Tiara Boobowski
|
|
272
|
+
- Tikal
|
|
273
|
+
- Vanilla the Rabbit
|
|
274
|
+
- Vector the Crocodile
|
|
275
|
+
- Wave the Swallow
|
|
276
|
+
- Wentos
|
|
277
|
+
- Witchcart
|
|
278
|
+
- Xbox Live Avatar
|
|
279
|
+
- Yacker
|
|
280
|
+
- Zavok
|
|
281
|
+
- Zazz
|
|
282
|
+
- Zeena
|
|
283
|
+
- ZERO
|
|
284
|
+
- Zomom
|
|
285
|
+
- Zor
|
|
286
|
+
game:
|
|
287
|
+
- Sonic the Hedgehog
|
|
288
|
+
- Sonic the Hedgehog
|
|
289
|
+
- Sonic the Hedgehog 2
|
|
290
|
+
- Sonic the Hedgehog 2
|
|
291
|
+
- Sonic the Hedgehog Spinball
|
|
292
|
+
- Sonic the Hedgehog CD
|
|
293
|
+
- Sonic Chaos
|
|
294
|
+
- Sonic the Hedgehog 3
|
|
295
|
+
- Sonic & Knuckles
|
|
296
|
+
- Sonic the Hedgehog Triple Trouble
|
|
297
|
+
- Knuckles' Chaotix
|
|
298
|
+
- Tails' Skypatrol
|
|
299
|
+
- Tails Adventure
|
|
300
|
+
- Sonic Labyrinth
|
|
301
|
+
- Sonic Blast
|
|
302
|
+
- Sonic Advance
|
|
303
|
+
- Sonic Advance 2
|
|
304
|
+
- Sonic Advance 3
|
|
305
|
+
- Sonic Rush
|
|
306
|
+
- Sonic Rivals
|
|
307
|
+
- Sonic Rush Adventure
|
|
308
|
+
- Sonic Rivals 2
|
|
309
|
+
- "Sonic the Hedgehog 4: Episode I"
|
|
310
|
+
- Sonic Colors
|
|
311
|
+
- Sonic Generations
|
|
312
|
+
- "Sonic the Hedgehog 4: Episode II"
|
|
313
|
+
- Sonic Jump
|
|
314
|
+
- "Sonic Boom: Shattered Crystal"
|
|
315
|
+
- "Sonic Boom: Fire & Ice"
|
|
316
|
+
- Sonic Mania
|
|
317
|
+
- Sonic Mania Plus (2018)
|
|
318
|
+
- SegaSonic the Hedgehog
|
|
319
|
+
- Sonic 3D Blast
|
|
320
|
+
- Sonic Adventure
|
|
321
|
+
- Sonic Adventure 2
|
|
322
|
+
- Sonic Heroes
|
|
323
|
+
- Shadow the Hedgehog
|
|
324
|
+
- Sonic the Hedgehog
|
|
325
|
+
- Sonic and the Secret Rings
|
|
326
|
+
- Sonic Unleashed
|
|
327
|
+
- Sonic and the Black Knight
|
|
328
|
+
- Sonic Colors
|
|
329
|
+
- Sonic Generations
|
|
330
|
+
- Sonic Lost World
|
|
331
|
+
- "Sonic Boom: Rise of Lyric"
|
|
332
|
+
- Sonic Forces
|
|
333
|
+
- Sonic Eraser
|
|
334
|
+
- Dr. Robotnik's Mean Bean Machine
|
|
335
|
+
- Sonic the Hedgehog's Gameworld
|
|
336
|
+
- Sonic Labyrinth
|
|
337
|
+
- Sonic Shuffle
|
|
338
|
+
- Sonic Pinball Party
|
|
339
|
+
- Sega Superstars
|
|
340
|
+
- Sonic and the Secret Rings
|
|
341
|
+
- Mario & Sonic at the Olympic Games
|
|
342
|
+
- Sega Superstars Tennis
|
|
343
|
+
- Mario & Sonic at the Olympic Winter Games
|
|
344
|
+
- Mario & Sonic at the London 2012 Olympic Games
|
|
345
|
+
- Mario & Sonic at the Sochi 2014 Olympic Winter Games
|
|
346
|
+
- Mario & Sonic at the Rio 2016 Olympic Games (2016)
|
|
347
|
+
- Waku Waku Sonic Patrol Car
|
|
348
|
+
- SegaSonic Cosmo Fighter
|
|
349
|
+
- Sonic Drift
|
|
350
|
+
- Sonic Drift 2
|
|
351
|
+
- Sonic R
|
|
352
|
+
- Sonic Riders
|
|
353
|
+
- Sonic Rivals
|
|
354
|
+
- Sonic Rivals 2
|
|
355
|
+
- "Sonic Riders: Zero Gravity"
|
|
356
|
+
- Sonic & Sega All-Stars Racing
|
|
357
|
+
- Sonic Free Riders
|
|
358
|
+
- Sonic & All-Stars Racing Transformed
|
|
359
|
+
- "Sonic Forces: Speed Battle"
|
|
360
|
+
- Wacky Worlds Creativity Studio
|
|
361
|
+
- Tails and the Music Maker
|
|
362
|
+
- Sonic the Hedgehog's Gameworld
|
|
363
|
+
- Sonic's Schoolhouse
|
|
364
|
+
- Sonic X
|
|
365
|
+
- Sonic the Fighters
|
|
366
|
+
- Sonic Battle
|
|
367
|
+
- Super Smash Bros. Brawl
|
|
368
|
+
- Super Smash Bros. for Nintendo 3DS and Wii U
|
|
369
|
+
- Sonic Battle
|
|
370
|
+
- "Sonic Chronicles: The Dark Brotherhood"
|
|
371
|
+
- Mario & Sonic at the Olympic Winter Games
|
|
372
|
+
- Mario & Sonic at the London 2012 Olympic Games
|
|
373
|
+
- Sonic Dash
|
|
374
|
+
- Sonic Runners
|
|
375
|
+
- "Sonic Dash 2: Sonic Boom"
|
|
376
|
+
- Sonic Runners Adventure
|
|
377
|
+
- Sonic the Hedgehog 3D Chess
|
|
378
|
+
- Sonic Monopoly
|
|
379
|
+
- Sonic Boom Monopoly
|
|
380
|
+
- Sonic the Hedgehog Spinball
|
|
381
|
+
- Dr. Robotnik's Mean Bean Machine
|
|
382
|
+
- Sonic 2 in 1
|
|
383
|
+
- Sonic Compilation
|
|
384
|
+
- Sonic CD
|
|
385
|
+
- "Sonic 3D Blast: Flickies' Island"
|
|
386
|
+
- Sonic Blast
|
|
387
|
+
- Sonic & Knuckles Collection
|
|
388
|
+
- Sonic Jam
|
|
389
|
+
- Sonic R
|
|
390
|
+
- Sonic the Hedgehog Pocket Adventure
|
|
391
|
+
- "Sonic Adventure 2: Battle"
|
|
392
|
+
- Sonic Mega Collection
|
|
393
|
+
- Sonic N
|
|
394
|
+
- "Sonic Adventure DX: Director's Cut"
|
|
395
|
+
- Sonic Heroes
|
|
396
|
+
- Sonic Gems Collection
|
|
397
|
+
- Sonic the Hedgehog Genesis
|
|
398
|
+
- Sega Genesis Collection
|
|
399
|
+
- Sonic's Ultimate Genesis Collection
|
|
400
|
+
- Sonic Classic Collection
|
|
401
|
+
- Sonic & Sega All-Stars Racing Arcade
|
|
402
|
+
- Sonic the Fighters
|
|
403
|
+
- 3D Sonic the Hedgehog
|
|
404
|
+
- Sonic the Hedgehog
|
|
405
|
+
- Sonic the Hedgehog 2
|
|
406
|
+
- 3D Sonic the Hedgehog 2
|
|
407
|
+
- Sega 3D Classics Collection
|
|
408
|
+
- Team Sonic Racing
|
|
409
|
+
- Super Smash Bros. Ultimate
|
|
410
|
+
- Sega Heroes
|