faker 2.2.0 → 3.2.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 +4 -4
- data/CHANGELOG.md +1298 -24
- data/History.md +5 -5
- data/README.md +239 -104
- data/lib/faker/blockchain/aeternity.rb +70 -0
- data/lib/faker/blockchain/bitcoin.rb +28 -2
- data/lib/faker/blockchain/ethereum.rb +11 -1
- data/lib/faker/blockchain/tezos.rb +93 -9
- data/lib/faker/books/book.rb +36 -0
- data/lib/faker/books/culture_series.rb +49 -0
- data/lib/faker/books/dune.rb +73 -17
- data/lib/faker/books/lovecraft.rb +186 -57
- data/lib/faker/books/the_kingkiller_chronicle.rb +61 -0
- data/lib/faker/creature/animal.rb +9 -0
- data/lib/faker/creature/bird.rb +203 -0
- data/lib/faker/creature/cat.rb +27 -0
- data/lib/faker/creature/dog.rb +72 -0
- data/lib/faker/creature/horse.rb +18 -0
- data/lib/faker/default/address.rb +253 -33
- data/lib/faker/default/adjective.rb +35 -0
- data/lib/faker/default/alphanumeric.rb +27 -22
- data/lib/faker/default/ancient.rb +36 -0
- data/lib/faker/default/app.rb +46 -16
- data/lib/faker/default/appliance.rb +18 -0
- data/lib/faker/default/artist.rb +9 -0
- data/lib/faker/default/avatar.rb +32 -24
- data/lib/faker/default/bank.rb +118 -29
- data/lib/faker/default/barcode.rb +165 -0
- data/lib/faker/default/beer.rb +75 -3
- data/lib/faker/default/blood.rb +48 -0
- data/lib/faker/default/boolean.rb +13 -6
- data/lib/faker/default/bossa_nova.rb +18 -0
- data/lib/faker/default/business.rb +27 -0
- data/lib/faker/default/camera.rb +46 -0
- data/lib/faker/default/cannabis.rb +90 -0
- data/lib/faker/default/chile_rut.rb +62 -26
- data/lib/faker/default/chuck_norris.rb +13 -2
- data/lib/faker/default/code.rb +162 -58
- data/lib/faker/default/coffee.rb +45 -0
- data/lib/faker/default/coin.rb +18 -0
- data/lib/faker/default/color.rb +123 -5
- data/lib/faker/default/commerce.rb +105 -37
- data/lib/faker/default/company.rb +446 -34
- data/lib/faker/default/compass.rb +135 -0
- data/lib/faker/default/computer.rb +63 -0
- data/lib/faker/default/construction.rb +54 -0
- data/lib/faker/default/cosmere.rb +90 -0
- data/lib/faker/default/crypto.rb +44 -4
- data/lib/faker/default/crypto_coin.rb +48 -18
- data/lib/faker/default/currency.rb +27 -0
- data/lib/faker/default/date.rb +149 -52
- data/lib/faker/default/dc_comics.rb +45 -0
- data/lib/faker/default/demographic.rb +58 -6
- data/lib/faker/default/dessert.rb +27 -0
- data/lib/faker/default/device.rb +54 -0
- data/lib/faker/default/driving_licence.rb +85 -28
- data/lib/faker/default/drone.rb +332 -0
- data/lib/faker/default/educator.rb +73 -6
- data/lib/faker/default/electrical_components.rb +27 -0
- data/lib/faker/default/emotion.rb +33 -0
- data/lib/faker/default/esport.rb +45 -0
- data/lib/faker/default/file.rb +53 -38
- data/lib/faker/default/finance.rb +75 -8
- data/lib/faker/default/food.rb +93 -3
- data/lib/faker/default/funny_name.rb +45 -0
- data/lib/faker/default/gender.rb +31 -0
- data/lib/faker/default/greek_philosophers.rb +18 -0
- data/lib/faker/default/hacker.rb +59 -1
- data/lib/faker/default/hipster.rb +106 -81
- data/lib/faker/default/hobby.rb +22 -0
- data/lib/faker/default/house.rb +18 -0
- data/lib/faker/default/html.rb +230 -0
- data/lib/faker/default/id_number.rb +276 -18
- data/lib/faker/default/industry_segments.rb +36 -0
- data/lib/faker/default/internet.rb +442 -147
- data/lib/faker/default/internet_http.rb +48 -0
- data/lib/faker/default/invoice.rb +37 -29
- data/lib/faker/default/job.rb +36 -0
- data/lib/faker/default/json.rb +61 -30
- data/lib/faker/default/kpop.rb +54 -0
- data/lib/faker/default/lorem.rb +184 -121
- data/lib/faker/default/lorem_flickr.rb +69 -68
- data/lib/faker/default/markdown.rb +97 -15
- data/lib/faker/default/marketing.rb +9 -0
- data/lib/faker/default/measurement.rb +101 -50
- data/lib/faker/default/military.rb +71 -0
- data/lib/faker/default/mountain.rb +33 -0
- data/lib/faker/default/name.rb +99 -6
- data/lib/faker/default/nation.rb +45 -5
- data/lib/faker/default/nato_phonetic_alphabet.rb +9 -0
- data/lib/faker/default/nhs.rb +21 -7
- data/lib/faker/default/number.rb +160 -91
- data/lib/faker/default/omniauth.rb +199 -137
- data/lib/faker/default/phone_number.rb +89 -11
- data/lib/faker/default/placeholdit.rb +23 -25
- data/lib/faker/default/programming_language.rb +18 -0
- data/lib/faker/default/relationship.rb +47 -7
- data/lib/faker/default/religion.rb +6 -0
- data/lib/faker/default/restaurant.rb +54 -2
- data/lib/faker/default/science.rb +135 -0
- data/lib/faker/default/slack_emoji.rb +81 -0
- data/lib/faker/default/source.rb +46 -22
- data/lib/faker/default/south_africa.rb +90 -0
- data/lib/faker/default/space.rb +128 -1
- data/lib/faker/default/string.rb +18 -9
- data/lib/faker/default/stripe.rb +68 -27
- data/lib/faker/default/subscription.rb +45 -0
- data/lib/faker/default/superhero.rb +45 -0
- data/lib/faker/default/tea.rb +41 -0
- data/lib/faker/default/team.rb +45 -0
- data/lib/faker/default/time.rb +84 -68
- data/lib/faker/default/twitter.rb +57 -47
- data/lib/faker/default/types.rb +90 -41
- data/lib/faker/default/university.rb +45 -0
- data/lib/faker/default/vehicle.rb +223 -60
- data/lib/faker/default/verb.rb +45 -0
- data/lib/faker/default/vulnerability_identifier.rb +23 -0
- data/lib/faker/default/world_cup.rb +52 -16
- data/lib/faker/fantasy/tolkien.rb +67 -0
- data/lib/faker/games/clash_of_clans.rb +48 -0
- data/lib/faker/games/control.rb +113 -0
- data/lib/faker/games/dnd.rb +178 -0
- data/lib/faker/games/dota.rb +61 -6
- data/lib/faker/games/elder_scrolls.rb +98 -0
- data/lib/faker/games/fallout.rb +37 -0
- data/lib/faker/games/final_fantasy_xiv.rb +73 -0
- data/lib/faker/games/game.rb +27 -0
- data/lib/faker/games/half_life.rb +27 -0
- data/lib/faker/games/heroes.rb +40 -0
- data/lib/faker/games/heroes_of_the_storm.rb +48 -1
- data/lib/faker/games/league_of_legends.rb +54 -0
- data/lib/faker/games/minecraft.rb +113 -0
- data/lib/faker/games/myst.rb +45 -0
- data/lib/faker/games/overwatch.rb +27 -0
- data/lib/faker/games/pokemon.rb +27 -0
- data/lib/faker/games/sonic_the_hedgehog.rb +27 -0
- data/lib/faker/games/street_fighter.rb +61 -0
- data/lib/faker/games/super_mario.rb +48 -0
- data/lib/faker/games/super_smash_bros.rb +18 -0
- data/lib/faker/games/tarkov.rb +205 -0
- data/lib/faker/games/touhou.rb +75 -0
- data/lib/faker/games/warhammer_fantasy.rb +74 -0
- data/lib/faker/games/witcher.rb +93 -0
- data/lib/faker/games/world_of_warcraft.rb +44 -1
- data/lib/faker/games/zelda.rb +37 -1
- data/lib/faker/japanese_media/conan.rb +48 -0
- data/lib/faker/japanese_media/cowboy_bebop.rb +61 -0
- data/lib/faker/japanese_media/doraemon.rb +48 -0
- data/lib/faker/japanese_media/dragon_ball.rb +35 -0
- data/lib/faker/japanese_media/fullmetal_alchemist_brotherhood.rb +48 -0
- data/lib/faker/japanese_media/kamen_rider.rb +102 -0
- data/lib/faker/japanese_media/naruto.rb +61 -0
- data/lib/faker/japanese_media/one_piece.rb +55 -1
- data/lib/faker/japanese_media/studio_ghibli.rb +48 -0
- data/lib/faker/japanese_media/sword_art_online.rb +36 -0
- data/lib/faker/locations/australia.rb +47 -0
- data/lib/faker/movies/avatar.rb +49 -0
- data/lib/faker/movies/back_to_the_future.rb +28 -0
- data/lib/faker/movies/departed.rb +49 -0
- data/lib/faker/movies/ghostbusters.rb +28 -0
- data/lib/faker/movies/hackers.rb +48 -0
- data/lib/faker/movies/harry_potter.rb +54 -0
- data/lib/faker/movies/hitchhikers_guide_to_the_galaxy.rb +69 -0
- data/lib/faker/movies/hobbit.rb +41 -4
- data/lib/faker/movies/how_to_train_your_dragon.rb +48 -0
- data/lib/faker/movies/lebowski.rb +27 -0
- data/lib/faker/movies/lord_of_the_rings.rb +31 -3
- data/lib/faker/movies/movie.rb +22 -0
- data/lib/faker/movies/princess_bride.rb +19 -0
- data/lib/faker/movies/room.rb +63 -0
- data/lib/faker/movies/star_wars.rb +170 -11
- data/lib/faker/movies/tron.rb +161 -0
- data/lib/faker/movies/v_for_vendetta.rb +29 -0
- data/lib/faker/music/grateful_dead.rb +18 -0
- data/lib/faker/music/hiphop.rb +48 -0
- data/lib/faker/music/music.rb +102 -4
- data/lib/faker/music/opera.rb +273 -1
- data/lib/faker/music/pearl_jam.rb +50 -0
- data/lib/faker/music/phish.rb +36 -1
- data/lib/faker/music/prince.rb +64 -0
- data/lib/faker/music/rock_band.rb +21 -0
- data/lib/faker/music/rush.rb +37 -0
- data/lib/faker/music/show.rb +49 -0
- data/lib/faker/music/smashing_pumpkins.rb +64 -0
- data/lib/faker/music/umphreys_mcgee.rb +9 -0
- data/lib/faker/quotes/chiquito.rb +80 -0
- data/lib/faker/quotes/quote.rb +93 -1
- data/lib/faker/quotes/rajnikanth.rb +27 -0
- data/lib/faker/quotes/shakespeare.rb +70 -0
- data/lib/faker/religion/bible.rb +50 -0
- data/lib/faker/sports/basketball.rb +36 -0
- data/lib/faker/sports/chess.rb +90 -0
- data/lib/faker/sports/football.rb +45 -0
- data/lib/faker/sports/mountaineering.rb +22 -0
- data/lib/faker/sports/sport.rb +116 -0
- data/lib/faker/sports/volleyball.rb +74 -0
- data/lib/faker/travel/airport.rb +43 -0
- data/lib/faker/travel/train_station.rb +54 -0
- data/lib/faker/tv_shows/aqua_teen_hunger_force.rb +22 -0
- data/lib/faker/tv_shows/archer.rb +51 -0
- data/lib/faker/tv_shows/big_bang_theory.rb +37 -0
- data/lib/faker/tv_shows/bojack_horseman.rb +28 -0
- data/lib/faker/tv_shows/breaking_bad.rb +18 -0
- data/lib/faker/tv_shows/brooklyn_nine_nine.rb +38 -0
- data/lib/faker/tv_shows/buffy.rb +60 -2
- data/lib/faker/tv_shows/community.rb +19 -0
- data/lib/faker/tv_shows/dr_who.rb +78 -2
- data/lib/faker/tv_shows/dumb_and_dumber.rb +28 -0
- data/lib/faker/tv_shows/family_guy.rb +28 -0
- data/lib/faker/tv_shows/final_space.rb +51 -0
- data/lib/faker/tv_shows/friends.rb +27 -0
- data/lib/faker/tv_shows/futurama.rb +65 -0
- data/lib/faker/tv_shows/game_of_thrones.rb +46 -0
- data/lib/faker/tv_shows/hey_arnold.rb +27 -0
- data/lib/faker/tv_shows/how_i_met_your_mother.rb +37 -0
- data/lib/faker/tv_shows/michael_scott.rb +10 -0
- data/lib/faker/tv_shows/new_girl.rb +19 -0
- data/lib/faker/tv_shows/parks_and_rec.rb +18 -0
- data/lib/faker/tv_shows/rick_and_morty.rb +28 -0
- data/lib/faker/tv_shows/ru_paul.rb +18 -0
- data/lib/faker/tv_shows/seinfeld.rb +28 -0
- data/lib/faker/tv_shows/silicon_valley.rb +75 -0
- data/lib/faker/tv_shows/simpsons.rb +42 -0
- data/lib/faker/tv_shows/south_park.rb +34 -0
- data/lib/faker/tv_shows/spongebob.rb +50 -0
- data/lib/faker/tv_shows/star_trek.rb +36 -0
- data/lib/faker/tv_shows/stargate.rb +28 -0
- data/lib/faker/tv_shows/stranger_things.rb +19 -0
- data/lib/faker/tv_shows/suits.rb +37 -0
- data/lib/faker/tv_shows/supernatural.rb +48 -0
- data/lib/faker/tv_shows/the_expanse.rb +36 -0
- data/lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb +43 -2
- data/lib/faker/tv_shows/the_it_crowd.rb +37 -0
- data/lib/faker/tv_shows/the_office.rb +37 -0
- data/lib/faker/tv_shows/the_thick_of_it.rb +28 -0
- data/lib/faker/tv_shows/twin_peaks.rb +28 -0
- data/lib/faker/tv_shows/venture_bros.rb +38 -0
- data/lib/faker/version.rb +2 -2
- data/lib/faker.rb +58 -58
- data/lib/helpers/base58.rb +1 -1
- data/lib/helpers/char.rb +22 -27
- data/lib/helpers/positional_generator.rb +480 -0
- data/lib/helpers/unique_generator.rb +17 -13
- data/lib/locales/README.md +18 -2
- data/lib/locales/ar.yml +6 -1
- data/lib/locales/bg.yml +3 -3
- data/lib/locales/ca.yml +0 -8
- data/lib/locales/da-DK.yml +6 -4
- data/lib/locales/de-AT.yml +7 -6
- data/lib/locales/de-CH.yml +6028 -9
- data/lib/locales/de.yml +12 -6
- data/lib/locales/en/address.yml +8 -3
- data/lib/locales/en/adjective.yml +179 -0
- data/lib/locales/en/airport.yml +381 -0
- data/lib/locales/en/animal.yml +1 -1
- data/lib/locales/en/aqua_teen_hunger_force.yml +33 -1
- data/lib/locales/en/archer.yml +75 -0
- data/lib/locales/en/australia.yml +107 -0
- data/lib/locales/en/avatar.yml +31 -0
- data/lib/locales/en/bank.yml +1 -1
- data/lib/locales/en/barcode.yml +24 -0
- data/lib/locales/en/bible.yml +90 -0
- data/lib/locales/en/big_bang_theory.yml +38 -0
- data/lib/locales/en/bird.yml +1281 -0
- data/lib/locales/en/blood.yml +13 -0
- data/lib/locales/en/book.yml +487 -3
- data/lib/locales/en/brooklyn_nine_nine.yml +35 -0
- data/lib/locales/en/buffy.yml +1 -1
- data/lib/locales/en/camera.yml +611 -0
- data/lib/locales/en/cat.yml +1 -1
- data/lib/locales/en/chess.yml +103 -0
- data/lib/locales/en/chiquito.yml +64 -0
- data/lib/locales/en/clash_of_clan.yml +101 -0
- data/lib/locales/en/coffee.yml +1 -1
- data/lib/locales/en/color.yml +1 -1
- data/lib/locales/en/commerce.yml +17 -0
- data/lib/locales/en/community.yml +17 -17
- data/lib/locales/en/company.yml +3 -2
- data/lib/locales/en/computer.yml +55 -0
- data/lib/locales/en/conan.yml +171 -0
- data/lib/locales/en/control.yml +247 -0
- data/lib/locales/en/cowboy_bebop.yml +163 -0
- data/lib/locales/en/demographic.yml +218 -5
- data/lib/locales/en/departed.yml +50 -0
- data/lib/locales/en/device.yml +112 -4
- data/lib/locales/en/dnd.yml +636 -0
- data/lib/locales/en/doraemon.yml +286 -0
- data/lib/locales/en/dota.yml +651 -63
- data/lib/locales/en/dr_who.yml +1 -1
- data/lib/locales/en/dragon_ball.yml +243 -1
- data/lib/locales/en/driving_license.yml +181 -0
- data/lib/locales/en/drone.yml +95 -0
- data/lib/locales/en/dune.yml +270 -131
- data/lib/locales/en/educator.yml +75 -6
- data/lib/locales/en/elder_scrolls.yml +583 -9
- data/lib/locales/en/emotion.yml +480 -0
- data/lib/locales/en/fallout.yml +311 -133
- data/lib/locales/en/file.yml +9 -1
- data/lib/locales/en/final_fantasy_xiv.yml +754 -0
- data/lib/locales/en/final_space.yml +37 -0
- data/lib/locales/en/finance.yml +77 -1
- data/lib/locales/en/fma_brotherhood.yml +78 -0
- data/lib/locales/en/food.yml +1066 -10
- data/lib/locales/en/football.yml +3 -3
- data/lib/locales/en/fresh_prince_of_bel_air.yml +1 -1
- data/lib/locales/en/futurama.yml +344 -0
- data/lib/locales/en/game.yml +11 -0
- data/lib/locales/en/gender.yml +1 -0
- data/lib/locales/en/hackers.yml +53 -0
- data/lib/locales/en/half_life.yml +84 -3
- data/lib/locales/en/heroes.yml +408 -3
- data/lib/locales/en/heroes_of_the_storm.yml +131 -4
- data/lib/locales/en/hobby.yml +171 -0
- data/lib/locales/en/horse.yml +2 -2
- data/lib/locales/en/house.yml +1 -1
- data/lib/locales/en/how_to_train_your_dragon.yml +174 -0
- data/lib/locales/en/internet.yml +140 -3
- data/lib/locales/en/jack_handey.yml +54 -0
- data/lib/locales/en/kamen_rider.yml +452 -0
- data/lib/locales/en/kpop.yml +7 -7
- data/lib/locales/en/league_of_legends.yml +285 -6
- data/lib/locales/en/lebowski.yml +1 -1
- data/lib/locales/en/lovecraft.yml +76 -6
- data/lib/locales/en/military.yml +179 -5
- data/lib/locales/en/minecraft.yml +663 -0
- data/lib/locales/en/mitch_hedberg.yml +46 -0
- data/lib/locales/en/mountain.yml +171 -0
- data/lib/locales/en/mountaineering.yml +14 -0
- data/lib/locales/en/movie.yml +194 -2
- data/lib/locales/en/music.yml +461 -29
- data/lib/locales/en/myst.yml +87 -31
- data/lib/locales/en/name.yml +6 -5
- data/lib/locales/en/naruto.yml +230 -0
- data/lib/locales/en/one_piece.yml +2 -2
- data/lib/locales/en/opera.yml +169 -1
- data/lib/locales/en/overwatch.yml +2648 -37
- data/lib/locales/en/pearl_jam.yml +213 -0
- data/lib/locales/en/phish.yml +392 -1
- data/lib/locales/en/phone_number.yml +1 -1
- data/lib/locales/en/pokemon.yml +417 -4
- data/lib/locales/en/prince.yml +227 -0
- data/lib/locales/en/quote.yml +692 -163
- data/lib/locales/en/rajnikanth.yml +77 -0
- data/lib/locales/en/rock_band.yml +1 -0
- data/lib/locales/en/room.yml +68 -0
- data/lib/locales/en/rush.yml +32 -0
- data/lib/locales/en/science.yml +481 -3
- data/lib/locales/en/shakespeare.yml +23 -26
- data/lib/locales/en/show.yml +597 -0
- data/lib/locales/en/simpsons.yml +668 -0
- data/lib/locales/en/smashing_pumpkins.yml +382 -0
- data/lib/locales/en/source.yml +35 -0
- data/lib/locales/en/south_park.yml +360 -2
- data/lib/locales/en/space.yml +1 -1
- data/lib/locales/en/spongebob.yml +489 -0
- data/lib/locales/en/sport.yml +130 -0
- data/lib/locales/en/star_trek.yml +1 -1
- data/lib/locales/en/star_wars.yml +568 -220
- data/lib/locales/en/stranger_thing.yml +1 -1
- data/lib/locales/en/street_fighter.yml +1524 -0
- data/lib/locales/en/stripe.yml +3 -3
- data/lib/locales/en/studio_ghibli.yml +107 -0
- data/lib/locales/en/suits.yml +45 -0
- data/lib/locales/en/super_mario.yml +58 -0
- data/lib/locales/en/super_smash_bros.yml +23 -5
- data/lib/locales/en/supernatural.yml +141 -0
- data/lib/locales/en/tarkov.yml +593 -0
- data/lib/locales/en/tea.yml +172 -0
- data/lib/locales/en/the_kingkiller_chronicle.yml +56 -0
- data/lib/locales/en/the_office.yml +86 -0
- data/lib/locales/en/tolkien.yml +2453 -0
- data/lib/locales/en/touhou.yml +839 -0
- data/lib/locales/en/train_station.yml +280 -0
- data/lib/locales/en/tron.yml +227 -0
- data/lib/locales/en/vehicle.yml +2809 -75
- data/lib/locales/en/volleyball.yml +501 -0
- data/lib/locales/en/warhammer_fantasy.yml +582 -0
- data/lib/locales/en/witcher.yml +426 -7
- data/lib/locales/en/world_of_warcraft.yml +122 -4
- data/lib/locales/en/zelda.yml +962 -4
- data/lib/locales/en-AU.yml +50 -10
- data/lib/locales/en-CA.yml +5 -1
- data/lib/locales/en-GB.yml +3 -2
- data/lib/locales/en-IND.yml +2 -1
- data/lib/locales/en-MS.yml +3 -1
- data/lib/locales/en-NEP.yml +5 -2
- data/lib/locales/en-NG.yml +1 -0
- data/lib/locales/en-NZ.yml +135 -8
- data/lib/locales/en-PAK.yml +3 -1
- data/lib/locales/en-SG.yml +3 -1
- data/lib/locales/en-TH.yml +360 -0
- data/lib/locales/en-UG.yml +1 -0
- data/lib/locales/en-US.yml +38 -12
- data/lib/locales/en-ZA.yml +2 -2
- data/lib/locales/en-au-ocker.yml +4 -1
- data/lib/locales/en.yml +0 -3
- data/lib/locales/es-AR.yml +4601 -0
- data/lib/locales/es-MX.yml +4 -1
- data/lib/locales/es.yml +58 -2
- data/lib/locales/fa.yml +2 -0
- data/lib/locales/fi-FI.yml +4 -2
- data/lib/locales/fr/address.yml +20 -0
- data/lib/locales/fr/adjective.yml +266 -0
- data/lib/locales/fr/ancient.yml +141 -0
- data/lib/locales/fr/animal.yml +5 -0
- data/lib/locales/fr/appliance.yml +4 -0
- data/lib/locales/fr/book.yml +7 -0
- data/lib/locales/fr/color.yml +4 -0
- data/lib/locales/fr/company.yml +17 -0
- data/lib/locales/fr/compass.yml +23 -0
- data/lib/locales/fr/demographic.yml +4 -0
- data/lib/locales/fr/gender.yml +6 -0
- data/lib/locales/fr/internet.yml +5 -0
- data/lib/locales/fr/lorem.yml +5 -0
- data/lib/locales/fr/measurement.yml +7 -0
- data/lib/locales/fr/name.yml +22 -0
- data/lib/locales/fr/phone_number.yml +7 -0
- data/lib/locales/fr/pokemon.yml +7 -0
- data/lib/locales/fr-CA.yml +28 -11
- data/lib/locales/fr-CH.yml +3 -3
- data/lib/locales/fr.yml +1 -112
- data/lib/locales/hy.yml +3 -7
- data/lib/locales/id.yml +5 -2
- data/lib/locales/it.yml +3 -1
- data/lib/locales/ja/README.md +13 -0
- data/lib/locales/ja/address.yml +120539 -0
- data/lib/locales/ja/adjective.yml +148 -0
- data/lib/locales/ja/ancient.yml +4 -0
- data/lib/locales/ja/animal.yml +5 -0
- data/lib/locales/ja/bank.yml +4 -0
- data/lib/locales/ja/book.yml +7 -0
- data/lib/locales/ja/cat.yml +5 -0
- data/lib/locales/ja/coffee.yml +4 -0
- data/lib/locales/ja/color.yml +4 -0
- data/lib/locales/ja/commerce.yml +11 -0
- data/lib/locales/ja/company.yml +8 -0
- data/lib/locales/ja/dog.yml +6 -0
- data/lib/locales/ja/emotion.yml +51 -0
- data/lib/locales/ja/food.yml +4 -0
- data/lib/locales/ja/gender.yml +4 -0
- data/lib/locales/ja/lorem.yml +9 -0
- data/lib/locales/ja/name.yml +13 -0
- data/lib/locales/ja/naruto.yml +230 -0
- data/lib/locales/ja/overwatch.yml +5 -0
- data/lib/locales/ja/phone_number.yml +7 -0
- data/lib/locales/ja/pokemon.yml +7 -0
- data/lib/locales/ja/relationship.yml +10 -0
- data/lib/locales/ja/restaurant.yml +11 -0
- data/lib/locales/ja/space.yml +5 -0
- data/lib/locales/ja/sport.yml +130 -0
- data/lib/locales/ja/studio_ghibli.yml +112 -0
- data/lib/locales/ja/subscription.yml +8 -0
- data/lib/locales/ja/super_mario.yml +9 -0
- data/lib/locales/ja/super_smash_bros.yml +8 -0
- data/lib/locales/ja/touhou.yml +466 -0
- data/lib/locales/ja/university.yml +9 -0
- data/lib/locales/ja/zelda.yml +5 -0
- data/lib/locales/ko.yml +95 -2
- data/lib/locales/lt.yml +34 -0
- data/lib/locales/lv.yml +1 -1
- data/lib/locales/mi-NZ.yml +283 -0
- data/lib/locales/nb-NO.yml +5 -2
- data/lib/locales/nl.yml +1 -0
- data/lib/locales/pl.yml +2 -2
- data/lib/locales/pt-BR.yml +33 -4
- data/lib/locales/pt.yml +6 -4
- data/lib/locales/ru.yml +43 -1
- data/lib/locales/sk.yml +5 -2
- data/lib/locales/sv.yml +1 -0
- data/lib/locales/th.yml +380 -0
- data/lib/locales/tr.yml +1 -0
- data/lib/locales/uk.yml +10 -5
- data/lib/locales/vi.yml +1 -0
- data/lib/locales/zh-CN/bank.yml +17 -0
- data/lib/locales/zh-CN.yml +2 -1
- data/lib/locales/zh-TW.yml +2 -1
- metadata +201 -109
- data/lib/faker/default/fillmurray.rb +0 -30
- data/lib/faker/default/lorem_pixel.rb +0 -63
- data/lib/locales/en/hobbit.yml +0 -19
- data/lib/locales/en/lord_of_the_rings.yml +0 -6
- data/lib/locales/ja.yml +0 -98
|
@@ -0,0 +1,663 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
games:
|
|
4
|
+
minecraft:
|
|
5
|
+
achievement:
|
|
6
|
+
- Acquire Hardware
|
|
7
|
+
- Adventuring Time
|
|
8
|
+
- Ahoy!
|
|
9
|
+
- Alternative Fuel
|
|
10
|
+
- Archer
|
|
11
|
+
- Artificial Selection
|
|
12
|
+
- Atlantis?
|
|
13
|
+
- Bake Bread
|
|
14
|
+
- Beam Me Up
|
|
15
|
+
- Bee our guest
|
|
16
|
+
- Benchmaking
|
|
17
|
+
- Body Guard
|
|
18
|
+
- Bullseye
|
|
19
|
+
- Buy Low, Sell High
|
|
20
|
+
- Camouflage
|
|
21
|
+
- Castaway
|
|
22
|
+
- Cheating Death
|
|
23
|
+
- Chestful of Cobblestone
|
|
24
|
+
- Cover me in debris
|
|
25
|
+
- Cow Tipper
|
|
26
|
+
- Delicious Fish
|
|
27
|
+
- Diamonds to you!
|
|
28
|
+
- DIAMONDS!
|
|
29
|
+
- Disenchanted
|
|
30
|
+
- Dispense With This
|
|
31
|
+
- Do a Barrel Roll!
|
|
32
|
+
- Dry Spell
|
|
33
|
+
- Echolocation
|
|
34
|
+
- Enchanter
|
|
35
|
+
- Feeling Ill
|
|
36
|
+
- Free Diver
|
|
37
|
+
- Freight Station
|
|
38
|
+
- Fruit on the Loom
|
|
39
|
+
- Getting an Upgrade
|
|
40
|
+
- Getting Wood
|
|
41
|
+
- Great View From Up Here
|
|
42
|
+
- Have a Shearful Day
|
|
43
|
+
- Hot Topic
|
|
44
|
+
- Hot tourist destination
|
|
45
|
+
- I am a Marine Biologist
|
|
46
|
+
- I've got a bad feeling about this
|
|
47
|
+
- Inception
|
|
48
|
+
- Into Fire
|
|
49
|
+
- Into the Nether
|
|
50
|
+
- Iron Belly
|
|
51
|
+
- Iron Man
|
|
52
|
+
- It's a Sign!
|
|
53
|
+
- Kill the Beast!
|
|
54
|
+
- Leader Of The Pack
|
|
55
|
+
- Let it Go!
|
|
56
|
+
- Librarian
|
|
57
|
+
- Lion Hunter
|
|
58
|
+
- Local Brewery
|
|
59
|
+
- Map Room
|
|
60
|
+
- Master Trader
|
|
61
|
+
- Me Gold!
|
|
62
|
+
- MOAR Tools
|
|
63
|
+
- Monster Hunter
|
|
64
|
+
- Moskstraumen
|
|
65
|
+
- On A Rail
|
|
66
|
+
- One Pickle, Two Pickle, Sea Pickle, Four
|
|
67
|
+
- Oooh, shiny!
|
|
68
|
+
- Organizational Wizard
|
|
69
|
+
- Overkill
|
|
70
|
+
- Overpowered
|
|
71
|
+
- Passing the Time
|
|
72
|
+
- Plethora of Cats
|
|
73
|
+
- Pork Chop
|
|
74
|
+
- Pot Planter
|
|
75
|
+
- Rabbit Season
|
|
76
|
+
- Rainbow Collection
|
|
77
|
+
- Renewable Energy
|
|
78
|
+
- Repopulation
|
|
79
|
+
- Return to Sender
|
|
80
|
+
- Saddle Up
|
|
81
|
+
- Sail the 7 Seas
|
|
82
|
+
- Sleep with the Fishes
|
|
83
|
+
- Smelt Everything!
|
|
84
|
+
- Sniper Duel
|
|
85
|
+
- So I Got That Going for Me
|
|
86
|
+
- Sound the Alarm!
|
|
87
|
+
- Stayin' Frosty
|
|
88
|
+
- Sticky Situation
|
|
89
|
+
- Super Fuel
|
|
90
|
+
- Super Sonic
|
|
91
|
+
- Taking Inventory
|
|
92
|
+
- Taste of Your Own Medicine
|
|
93
|
+
- The Beaconator
|
|
94
|
+
- The Beginning?
|
|
95
|
+
- The Beginning.
|
|
96
|
+
- The Deep End
|
|
97
|
+
- The End?
|
|
98
|
+
- The End.
|
|
99
|
+
- The End... Again...
|
|
100
|
+
- The Haggler
|
|
101
|
+
- The Lie
|
|
102
|
+
- Tie Dye Outfit
|
|
103
|
+
- Time for Stew
|
|
104
|
+
- Time to Farm!
|
|
105
|
+
- Time to Mine!
|
|
106
|
+
- Time to Strike!
|
|
107
|
+
- Top of the World
|
|
108
|
+
- Total Beelocation
|
|
109
|
+
- Trampoline
|
|
110
|
+
- Treasure Hunter
|
|
111
|
+
- We're being attacked!
|
|
112
|
+
- When Pigs Fly
|
|
113
|
+
- Where Have You Been?
|
|
114
|
+
- You Need a Mint
|
|
115
|
+
- Zombie Doctor
|
|
116
|
+
- Zoologist
|
|
117
|
+
biome:
|
|
118
|
+
- Badlands
|
|
119
|
+
- Badlands Plateau
|
|
120
|
+
- Bamboo Jungle
|
|
121
|
+
- Bamboo Jungle Hills
|
|
122
|
+
- Basalt Deltas
|
|
123
|
+
- Beach
|
|
124
|
+
- Birch Forest
|
|
125
|
+
- Birch Forest Hills
|
|
126
|
+
- Cold Ocean
|
|
127
|
+
- Crimson Forest
|
|
128
|
+
- Dark Forest
|
|
129
|
+
- Dark Forest Hills
|
|
130
|
+
- Deep Cold Ocean
|
|
131
|
+
- Deep Frozen Ocean
|
|
132
|
+
- Deep Lukewarm Ocean
|
|
133
|
+
- Deep Ocean
|
|
134
|
+
- Deep Warm Ocean
|
|
135
|
+
- Desert
|
|
136
|
+
- Desert Hills
|
|
137
|
+
- Desert Lakes
|
|
138
|
+
- End Barrens
|
|
139
|
+
- End Highlands
|
|
140
|
+
- End Midlands
|
|
141
|
+
- Eroded Badlands
|
|
142
|
+
- Flower Forest
|
|
143
|
+
- Forest
|
|
144
|
+
- Frozen Ocean
|
|
145
|
+
- Frozen River
|
|
146
|
+
- Giant Spruce Taiga
|
|
147
|
+
- Giant Spruce Taiga Hills
|
|
148
|
+
- Giant Tree Taiga
|
|
149
|
+
- Giant Tree Taiga Hills
|
|
150
|
+
- Gravelly Mountains
|
|
151
|
+
- Gravelly Mountains+
|
|
152
|
+
- Ice Spikes
|
|
153
|
+
- Jungle
|
|
154
|
+
- Jungle Edge
|
|
155
|
+
- Jungle Hills
|
|
156
|
+
- Lukewarm Ocean
|
|
157
|
+
- Modified Badlands Plateau
|
|
158
|
+
- Modified Jungle
|
|
159
|
+
- Modified Jungle Edge
|
|
160
|
+
- Modified Wooded Badlands Plateau
|
|
161
|
+
- Mountain Edge
|
|
162
|
+
- Mountains
|
|
163
|
+
- Mushroom Field Shore
|
|
164
|
+
- Mushroom Fields
|
|
165
|
+
- Nether Wastes
|
|
166
|
+
- Ocean
|
|
167
|
+
- Plains
|
|
168
|
+
- River
|
|
169
|
+
- Savanna
|
|
170
|
+
- Savanna Plateau
|
|
171
|
+
- Shattered Savanna
|
|
172
|
+
- Shattered Savanna Plateau
|
|
173
|
+
- Small End Islands
|
|
174
|
+
- Snowy Beach
|
|
175
|
+
- Snowy Mountains
|
|
176
|
+
- Snowy Taiga
|
|
177
|
+
- Snowy Taiga Hills
|
|
178
|
+
- Snowy Taiga Mountains
|
|
179
|
+
- Snowy Tundra
|
|
180
|
+
- Soul Sand Valley
|
|
181
|
+
- Stone Shore
|
|
182
|
+
- Sunflower Plains
|
|
183
|
+
- Swamp
|
|
184
|
+
- Swamp Hills
|
|
185
|
+
- Taiga
|
|
186
|
+
- Taiga Hills
|
|
187
|
+
- Taiga Mountains
|
|
188
|
+
- Tall Birch Forest
|
|
189
|
+
- Tall Birch Hills
|
|
190
|
+
- The End
|
|
191
|
+
- The Voi
|
|
192
|
+
- Warm Ocean
|
|
193
|
+
- Warped Forest
|
|
194
|
+
- Wooded Badlands Plateau
|
|
195
|
+
- Wooded Hills
|
|
196
|
+
- Wooded Mountains
|
|
197
|
+
blocks:
|
|
198
|
+
- Stone
|
|
199
|
+
- Granite
|
|
200
|
+
- Polished Granite
|
|
201
|
+
- Diorite
|
|
202
|
+
- Polished Diorite
|
|
203
|
+
- Andesite
|
|
204
|
+
- Polished Andesite
|
|
205
|
+
- Grass
|
|
206
|
+
- Dirt
|
|
207
|
+
- Coarse Dirt
|
|
208
|
+
- Podzol
|
|
209
|
+
- Cobblestone
|
|
210
|
+
- Oak Wood Plank
|
|
211
|
+
- Spruce Wood Plank
|
|
212
|
+
- Birch Wood Plank
|
|
213
|
+
- Jungle Wood Plank
|
|
214
|
+
- Acacia Wood Plank
|
|
215
|
+
- Dark Oak Wood Plank
|
|
216
|
+
- Oak Sapling
|
|
217
|
+
- Spruce Sapling
|
|
218
|
+
- Birch Sapling
|
|
219
|
+
- Jungle Sapling
|
|
220
|
+
- Acacia Sapling
|
|
221
|
+
- Dark Oak Sapling
|
|
222
|
+
- Bedrock
|
|
223
|
+
- Flowing Water
|
|
224
|
+
- Still Water
|
|
225
|
+
- Flowing Lava
|
|
226
|
+
- Still Lava
|
|
227
|
+
- Sand
|
|
228
|
+
- Red Sand
|
|
229
|
+
- Gravel
|
|
230
|
+
- Gold Ore
|
|
231
|
+
- Iron Ore
|
|
232
|
+
- Coal Ore
|
|
233
|
+
- Oak Wood
|
|
234
|
+
- Spruce Wood
|
|
235
|
+
- Birch Wood
|
|
236
|
+
- Jungle Wood
|
|
237
|
+
- Oak Leaves
|
|
238
|
+
- Spruce Leaves
|
|
239
|
+
- Birch Leaves
|
|
240
|
+
- Jungle Leaves
|
|
241
|
+
- Sponge
|
|
242
|
+
- Wet Sponge
|
|
243
|
+
- Glass
|
|
244
|
+
- Lapis Lazuli Ore
|
|
245
|
+
- Lapis Lazuli Block
|
|
246
|
+
- Dispenser
|
|
247
|
+
- Sandstone
|
|
248
|
+
- Chiseled Sandstone
|
|
249
|
+
- Smooth Sandstone
|
|
250
|
+
- Note Block
|
|
251
|
+
- Bed
|
|
252
|
+
- Powered Rail
|
|
253
|
+
- Detector Rail
|
|
254
|
+
- Sticky Piston
|
|
255
|
+
- Cobweb
|
|
256
|
+
- Dead Shrub
|
|
257
|
+
- Grass
|
|
258
|
+
- Fern
|
|
259
|
+
- Dead Bush
|
|
260
|
+
- Piston
|
|
261
|
+
- Piston Head
|
|
262
|
+
- White Wool
|
|
263
|
+
- Orange Wool
|
|
264
|
+
- Magenta Wool
|
|
265
|
+
- Light Blue Wool
|
|
266
|
+
- Yellow Wool
|
|
267
|
+
- Lime Wool
|
|
268
|
+
- Pink Wool
|
|
269
|
+
- Gray Wool
|
|
270
|
+
- Light Gray Wool
|
|
271
|
+
- Cyan Wool
|
|
272
|
+
- Purple Wool
|
|
273
|
+
- Blue Wool
|
|
274
|
+
- Brown Wool
|
|
275
|
+
- Green Wool
|
|
276
|
+
- Red Wool
|
|
277
|
+
- Black Wool
|
|
278
|
+
- Dandelion
|
|
279
|
+
- Poppy
|
|
280
|
+
- Blue Orchid
|
|
281
|
+
- Allium
|
|
282
|
+
- Azure Bluet
|
|
283
|
+
- Red Tulip
|
|
284
|
+
- Orange Tulip
|
|
285
|
+
- White Tulip
|
|
286
|
+
- Pink Tulip
|
|
287
|
+
- Oxeye Daisy
|
|
288
|
+
- Brown Mushroom
|
|
289
|
+
- Red Mushroom
|
|
290
|
+
- Gold Block
|
|
291
|
+
- Iron Block
|
|
292
|
+
- Double Stone Slab
|
|
293
|
+
- Double Sandstone Slab
|
|
294
|
+
- Double Wooden Slab
|
|
295
|
+
- Double Cobblestone Slab
|
|
296
|
+
- Double Brick Slab
|
|
297
|
+
- Double Stone Brick Slab
|
|
298
|
+
- Double Nether Brick Slab
|
|
299
|
+
- Double Quartz Slab
|
|
300
|
+
- Stone Slab
|
|
301
|
+
- Sandstone Slab
|
|
302
|
+
- Wooden Slab
|
|
303
|
+
- Cobblestone Slab
|
|
304
|
+
- Brick Slab
|
|
305
|
+
- Stone Brick Slab
|
|
306
|
+
- Nether Brick Slab
|
|
307
|
+
- Quartz Slab
|
|
308
|
+
- Bricks
|
|
309
|
+
- TNT
|
|
310
|
+
- Bookshelf
|
|
311
|
+
- Moss Stone
|
|
312
|
+
- Obsidian
|
|
313
|
+
- Torch
|
|
314
|
+
- Fire
|
|
315
|
+
- Monster Spawner
|
|
316
|
+
- Oak Wood Stairs
|
|
317
|
+
- Chest
|
|
318
|
+
- Redstone Wire
|
|
319
|
+
- Diamond Ore
|
|
320
|
+
- Diamond Block
|
|
321
|
+
- Crafting Table
|
|
322
|
+
- Wheat Crops
|
|
323
|
+
- Farmland
|
|
324
|
+
- Furnace
|
|
325
|
+
- Burning Furnace
|
|
326
|
+
- Standing Sign Block
|
|
327
|
+
- Oak Door Block
|
|
328
|
+
- Ladder
|
|
329
|
+
- Rail
|
|
330
|
+
- Cobblestone Stairs
|
|
331
|
+
- Wall-mounted Sign Block
|
|
332
|
+
- Lever
|
|
333
|
+
- Stone Pressure Plate
|
|
334
|
+
- Iron Door Block
|
|
335
|
+
- Wooden Pressure Plate
|
|
336
|
+
- Redstone Ore
|
|
337
|
+
- Glowing Redstone Ore
|
|
338
|
+
- Stone Button
|
|
339
|
+
- Snow
|
|
340
|
+
- Ice
|
|
341
|
+
- Snow Block
|
|
342
|
+
- Cactus
|
|
343
|
+
- Clay
|
|
344
|
+
- Sugar Canes
|
|
345
|
+
- Jukebox
|
|
346
|
+
- Oak Fence
|
|
347
|
+
- Pumpkin
|
|
348
|
+
- Netherrack
|
|
349
|
+
- Soul Sand
|
|
350
|
+
- Glowstone
|
|
351
|
+
- Nether Portal
|
|
352
|
+
- Jack o'Lantern
|
|
353
|
+
- Cake Block
|
|
354
|
+
- Redstone Repeater Block off)
|
|
355
|
+
- Redstone Repeater Block on)
|
|
356
|
+
- White Stained Glass
|
|
357
|
+
- Orange Stained Glass
|
|
358
|
+
- Magenta Stained Glass
|
|
359
|
+
- Light Blue Stained Glass
|
|
360
|
+
- Yellow Stained Glass
|
|
361
|
+
- Lime Stained Glass
|
|
362
|
+
- Pink Stained Glass
|
|
363
|
+
- Gray Stained Glass
|
|
364
|
+
- Light Gray Stained Glass
|
|
365
|
+
- Cyan Stained Glass
|
|
366
|
+
- Purple Stained Glass
|
|
367
|
+
- Blue Stained Glass
|
|
368
|
+
- Brown Stained Glass
|
|
369
|
+
- Green Stained Glass
|
|
370
|
+
- Red Stained Glass
|
|
371
|
+
- Black Stained Glass
|
|
372
|
+
- Wooden Trapdoor
|
|
373
|
+
- Stone Monster Egg
|
|
374
|
+
- Cobblestone Monster Egg
|
|
375
|
+
- Stone Brick Monster Egg
|
|
376
|
+
- Mossy Stone Brick Monster Egg
|
|
377
|
+
- Cracked Stone Brick Monster Egg
|
|
378
|
+
- Chiseled Stone Brick Monster Egg
|
|
379
|
+
- Stone Bricks
|
|
380
|
+
- Mossy Stone Bricks
|
|
381
|
+
- Cracked Stone Bricks
|
|
382
|
+
- Chiseled Stone Bricks
|
|
383
|
+
- Brown Mushroom Block
|
|
384
|
+
- Red Mushroom Block
|
|
385
|
+
- Iron Bars
|
|
386
|
+
- Glass Pane
|
|
387
|
+
- Melon Block
|
|
388
|
+
- Pumpkin Stem
|
|
389
|
+
- Melon Stem
|
|
390
|
+
- Vines
|
|
391
|
+
- Oak Fence Gate
|
|
392
|
+
- Brick Stairs
|
|
393
|
+
- Stone Brick Stairs
|
|
394
|
+
- Mycelium
|
|
395
|
+
- Lily Pad
|
|
396
|
+
- Nether Brick
|
|
397
|
+
- Nether Brick Fence
|
|
398
|
+
enchantment:
|
|
399
|
+
- Aqua Affinity
|
|
400
|
+
- Bane of Arthropods
|
|
401
|
+
- Blast Protection
|
|
402
|
+
- Channeling
|
|
403
|
+
- Cleaving
|
|
404
|
+
- Curse of Binding
|
|
405
|
+
- Curse of Vanishing
|
|
406
|
+
- Depth Strider
|
|
407
|
+
- Efficiency
|
|
408
|
+
- Feather Falling
|
|
409
|
+
- Fire Aspect
|
|
410
|
+
- Fire Protection
|
|
411
|
+
- Flame
|
|
412
|
+
- Fortune
|
|
413
|
+
- Frost Walker
|
|
414
|
+
- Impaling
|
|
415
|
+
- Infinity
|
|
416
|
+
- Knockback
|
|
417
|
+
- Looting
|
|
418
|
+
- Loyalty
|
|
419
|
+
- Luck of the Sea
|
|
420
|
+
- Lure
|
|
421
|
+
- Mending
|
|
422
|
+
- Multishot
|
|
423
|
+
- Piercing
|
|
424
|
+
- Power
|
|
425
|
+
- Projectile Protection
|
|
426
|
+
- Protection
|
|
427
|
+
- Punch
|
|
428
|
+
- Quick Charge
|
|
429
|
+
- Respiration
|
|
430
|
+
- Riptide
|
|
431
|
+
- Sharpness
|
|
432
|
+
- Silk Touch
|
|
433
|
+
- Smite
|
|
434
|
+
- Soul Speed
|
|
435
|
+
- Sweeping Edge
|
|
436
|
+
- Thorns
|
|
437
|
+
- Unbreaking
|
|
438
|
+
game_mode:
|
|
439
|
+
- Adventure
|
|
440
|
+
- Creative
|
|
441
|
+
- Demo
|
|
442
|
+
- Hardcore
|
|
443
|
+
- Spectator
|
|
444
|
+
- Survival
|
|
445
|
+
items:
|
|
446
|
+
- Iron Shovel
|
|
447
|
+
- Iron Pickaxe
|
|
448
|
+
- Iron Axe
|
|
449
|
+
- Flint and Steel
|
|
450
|
+
- Apple
|
|
451
|
+
- Bow
|
|
452
|
+
- Arrow
|
|
453
|
+
- Coal
|
|
454
|
+
- Charcoal
|
|
455
|
+
- Diamond
|
|
456
|
+
- Iron Ingot
|
|
457
|
+
- Gold Ingot
|
|
458
|
+
- Iron Sword
|
|
459
|
+
- Wooden Sword
|
|
460
|
+
- Wooden Shovel
|
|
461
|
+
- Wooden Pickaxe
|
|
462
|
+
- Wooden Axe
|
|
463
|
+
- Stone Sword
|
|
464
|
+
- Stone Shovel
|
|
465
|
+
- Stone Pickaxe
|
|
466
|
+
- Stone Axe
|
|
467
|
+
- Diamond Sword
|
|
468
|
+
- Diamond Shovel
|
|
469
|
+
- Diamond Pickaxe
|
|
470
|
+
- Diamond Axe
|
|
471
|
+
- Stick
|
|
472
|
+
- Bowl
|
|
473
|
+
- Mushroom Stew
|
|
474
|
+
- Golden Sword
|
|
475
|
+
- Golden Shovel
|
|
476
|
+
- Golden Pickaxe
|
|
477
|
+
- Golden Axe
|
|
478
|
+
- String
|
|
479
|
+
- Feather
|
|
480
|
+
- Gunpowder
|
|
481
|
+
- Wooden Hoe
|
|
482
|
+
- Stone Hoe
|
|
483
|
+
- Iron Hoe
|
|
484
|
+
- Diamond Hoe
|
|
485
|
+
- Golden Hoe
|
|
486
|
+
- Wheat Seeds
|
|
487
|
+
- Wheat
|
|
488
|
+
- Bread
|
|
489
|
+
- Leather Helmet
|
|
490
|
+
- Leather Tunic
|
|
491
|
+
- Leather Pants
|
|
492
|
+
- Leather Boots
|
|
493
|
+
- Chainmail Helmet
|
|
494
|
+
- Chainmail Chestplate
|
|
495
|
+
- Chainmail Leggings
|
|
496
|
+
- Chainmail Boots
|
|
497
|
+
- Iron Helmet
|
|
498
|
+
- Iron Chestplate
|
|
499
|
+
- Iron Leggings
|
|
500
|
+
- Iron Boots
|
|
501
|
+
- Diamond Helmet
|
|
502
|
+
- Diamond Chestplate
|
|
503
|
+
- Diamond Leggings
|
|
504
|
+
- Diamond Boots
|
|
505
|
+
- Golden Helmet
|
|
506
|
+
- Golden Chestplate
|
|
507
|
+
- Golden Leggings
|
|
508
|
+
- Golden Boots
|
|
509
|
+
- Flint
|
|
510
|
+
- Raw Porkchop
|
|
511
|
+
- Cooked Porkchop
|
|
512
|
+
- Painting
|
|
513
|
+
- Golden Apple
|
|
514
|
+
- Enchanted Golden Apple
|
|
515
|
+
- Sign
|
|
516
|
+
- Oak Door
|
|
517
|
+
- Bucket
|
|
518
|
+
- Water Bucket
|
|
519
|
+
- Lava Bucket
|
|
520
|
+
- Minecart
|
|
521
|
+
- Saddle
|
|
522
|
+
- Iron Door
|
|
523
|
+
- Redstone
|
|
524
|
+
- Snowball
|
|
525
|
+
- Oak Boat
|
|
526
|
+
- Leather
|
|
527
|
+
- Milk Bucket
|
|
528
|
+
- Brick
|
|
529
|
+
- Clay
|
|
530
|
+
- Sugar Canes
|
|
531
|
+
- Paper
|
|
532
|
+
- Book
|
|
533
|
+
- Slimeball
|
|
534
|
+
- Minecart with Chest
|
|
535
|
+
- Minecart with Furnace
|
|
536
|
+
- Egg
|
|
537
|
+
- Compass
|
|
538
|
+
- Fishing Rod
|
|
539
|
+
- Clock
|
|
540
|
+
- Glowstone Dust
|
|
541
|
+
- Raw Fish
|
|
542
|
+
- Raw Salmon
|
|
543
|
+
- Clownfish
|
|
544
|
+
- Pufferfish
|
|
545
|
+
- Cooked Fish
|
|
546
|
+
- Cooked Salmon
|
|
547
|
+
- Ink Sack
|
|
548
|
+
- Rose Red
|
|
549
|
+
- Cactus Green
|
|
550
|
+
- Coco Beans
|
|
551
|
+
- Lapis Lazuli
|
|
552
|
+
- Purple Dye
|
|
553
|
+
- Cyan Dye
|
|
554
|
+
- Light Gray Dye
|
|
555
|
+
- Gray Dye
|
|
556
|
+
- Pink Dye
|
|
557
|
+
- Lime Dye
|
|
558
|
+
- Dandelion Yellow
|
|
559
|
+
- Light Blue Dye
|
|
560
|
+
- Magenta Dye
|
|
561
|
+
- Orange Dye
|
|
562
|
+
- Bone Meal
|
|
563
|
+
- Bone
|
|
564
|
+
- Sugar
|
|
565
|
+
mobs:
|
|
566
|
+
- Sheep
|
|
567
|
+
- Cow
|
|
568
|
+
- Fox
|
|
569
|
+
- Bat
|
|
570
|
+
- Chicken
|
|
571
|
+
- Cod
|
|
572
|
+
- Ocelot
|
|
573
|
+
- Pig
|
|
574
|
+
- Rabbit
|
|
575
|
+
- Salmon
|
|
576
|
+
- Mooshroom
|
|
577
|
+
- Squid
|
|
578
|
+
- Tropical fish
|
|
579
|
+
- Turtle
|
|
580
|
+
- Villager
|
|
581
|
+
- Wandering trader
|
|
582
|
+
- Pufferfish
|
|
583
|
+
- Donkey
|
|
584
|
+
- Horse
|
|
585
|
+
- Cat
|
|
586
|
+
- Parrot
|
|
587
|
+
- Mule
|
|
588
|
+
- Skeleton horse
|
|
589
|
+
- Dolphin
|
|
590
|
+
- Polar bear
|
|
591
|
+
- Trader llama
|
|
592
|
+
- Llama
|
|
593
|
+
- Panda
|
|
594
|
+
- Wolf
|
|
595
|
+
- Bee
|
|
596
|
+
- Iron golem
|
|
597
|
+
- Spider
|
|
598
|
+
- Cave Spider
|
|
599
|
+
- Enderman
|
|
600
|
+
- Zombie Pigman
|
|
601
|
+
- Evoker
|
|
602
|
+
- Vindicator
|
|
603
|
+
- Pillager
|
|
604
|
+
- Ravager
|
|
605
|
+
- Vex
|
|
606
|
+
- Chicken Jockey
|
|
607
|
+
- Endermite
|
|
608
|
+
- Guardian
|
|
609
|
+
- Elder Guardian
|
|
610
|
+
- Shulker
|
|
611
|
+
- Skeleton Horseman
|
|
612
|
+
- Husk
|
|
613
|
+
- Stray
|
|
614
|
+
- Phantom
|
|
615
|
+
- Blaze
|
|
616
|
+
- Creeper
|
|
617
|
+
- Ghast
|
|
618
|
+
- Magma Cube
|
|
619
|
+
- Silverfish
|
|
620
|
+
- Skeleton
|
|
621
|
+
- Slime
|
|
622
|
+
- Spider Jockey
|
|
623
|
+
- Zombie
|
|
624
|
+
- Zombie Villager
|
|
625
|
+
- Drowned
|
|
626
|
+
- Wither Skeleton
|
|
627
|
+
- Witch
|
|
628
|
+
- Hoglin
|
|
629
|
+
- Piglin
|
|
630
|
+
status_effect:
|
|
631
|
+
- Absorption
|
|
632
|
+
- Bad Luck
|
|
633
|
+
- Bad Omen
|
|
634
|
+
- Blindness
|
|
635
|
+
- Conduit Power
|
|
636
|
+
- Dolphin's Grace
|
|
637
|
+
- Fatal Poison
|
|
638
|
+
- Fire Resistance
|
|
639
|
+
- Glowing
|
|
640
|
+
- Haste
|
|
641
|
+
- Health Boost
|
|
642
|
+
- Hero of the Village
|
|
643
|
+
- Hunger
|
|
644
|
+
- Instant Damage
|
|
645
|
+
- Instant Health
|
|
646
|
+
- Invisibility
|
|
647
|
+
- Jump Boost
|
|
648
|
+
- Levitation
|
|
649
|
+
- Luck
|
|
650
|
+
- Mining Fatigue
|
|
651
|
+
- Nausea
|
|
652
|
+
- Night Vision
|
|
653
|
+
- Poison
|
|
654
|
+
- Regeneration
|
|
655
|
+
- Resistance
|
|
656
|
+
- Saturation
|
|
657
|
+
- Slow Falling
|
|
658
|
+
- Slowness
|
|
659
|
+
- Speed
|
|
660
|
+
- Strength
|
|
661
|
+
- Water Breathing
|
|
662
|
+
- Weakness
|
|
663
|
+
- Wither
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
quote:
|
|
4
|
+
mitch_hedberg:
|
|
5
|
+
- An escalator can never break, it can only become stairs. You should never see an 'Escalator Temporarily Out Of Order' sign, just 'Escalator Temporarily Stairs. Sorry for the convenience'.
|
|
6
|
+
- I'm sick of following my dreams. I'm just going to ask them where they're goin', and hook up with them later.
|
|
7
|
+
- Is a hippopotamus a hippopotamus, or just a really cool Opotamus?
|
|
8
|
+
- I don't have a girlfriend. But I do know a woman who'd be mad at me for saying that.
|
|
9
|
+
- I was at this casino minding my own business, and this guy came up to me and said, 'You're gonna have to move, you're blocking a fire exit.' As though if there was a fire, I wasn't gonna run. If you're flammible and have legs, you are never blocking a fire exit.
|
|
10
|
+
- Rice is great if you're really hungry and want to eat two thousand of something.
|
|
11
|
+
- My friend asked me if I wanted a frozen banana. I said 'No, but I want a regular banana later, so... yeah.'
|
|
12
|
+
- My belt holds my pants up, but the belt loops hold my belt up. I don't really know what's happening down there. Who is the real hero?
|
|
13
|
+
- I wanted to buy a candle holder, but the store didn't have one. So I got a cake.
|
|
14
|
+
- I haven't slept for ten days, because that would be too long.
|
|
15
|
+
- I like refried beans. That's why I wanna try fried beans, because maybe they're just as good and we're just wasting time.
|
|
16
|
+
- Y'know, you can't please all the people all the time... and last night, all those people were at my show.
|
|
17
|
+
- Fettucini alfredo is macaroni and cheese for adults.
|
|
18
|
+
- I bought a seven-dollar pen because I always lose pens and I got sick of not caring.
|
|
19
|
+
- I want to get a vending machine, with fun sized candy bars, and the glass in front is a magnifying glass. You'll be mad, but it will be too late.
|
|
20
|
+
- This shirt is dry clean only. Which means it's dirty.
|
|
21
|
+
- If carrots got you drunk, rabbits would be messed-up.
|
|
22
|
+
- The depressing thing about tennis is that no matter how good I get, I'll never be as good as a wall.
|
|
23
|
+
- I'm against picketing, but I don't know how to show it.
|
|
24
|
+
- I like to play blackjack. I'm not addicted to gambling. I'm addicted to sitting in a semi-circle.
|
|
25
|
+
- Every time I go and shave, I assume there's someone else on the planet shaving. So I say, 'I'm gonna go shave, too.'
|
|
26
|
+
- I recently took up ice sculpting. Last night I made an ice cube. This morning I made 12, I was prolific.
|
|
27
|
+
- I would imagine that if you could understand Morse code, a tap dancer would drive you crazy.
|
|
28
|
+
- I had a stick of CareFree gum, but it didn't work. I felt pretty good while I was blowing that bubble, but as soon as the gum lost its flavor, I was back to pondering my mortality.
|
|
29
|
+
- I drank some boiling water because I wanted to whistle.
|
|
30
|
+
- I like to hold the microphone cord like this, I pinch it together, then I let it go, then you hear a whole bunch of jokes at once.
|
|
31
|
+
- My sister wanted to be an actress, but she never made it. She does live in a trailer. She got halfway. She's an actress, she just never gets called to the set.
|
|
32
|
+
- I'd like to get four people who do cart wheels very good, and make a cart.
|
|
33
|
+
- If my kid couldn't draw I'd make sure that my kitchen magnets didn't work.
|
|
34
|
+
- I saw a human pyramid once. It was very unnecessary.
|
|
35
|
+
- People teach their dogs to sit; it's a trick. I've been sitting my whole life, and a dog has never looked at me as though he thought I was tricky.
|
|
36
|
+
- I wish my name was Brian because maybe sometimes people would misspell my name and call me Brain. That's like a free compliment and you don't even gotta be smart to notice it.
|
|
37
|
+
- It's very dangerous to wave to people you don't know because what if they don't have hands? They'll think you're cocky.
|
|
38
|
+
- I like Kit-Kats, unless I'm with four or more people.
|
|
39
|
+
- Dogs are forever in the push up postion.
|
|
40
|
+
- I wish I could play little league now. I'd be way better than before.
|
|
41
|
+
- When someone hands you a flyer, it's like they're saying here you throw this away.
|
|
42
|
+
- I once saw a forklift lift a crate of forks. And it was way to literal for me.
|
|
43
|
+
- Every book is a children's book if the kid can read.
|
|
44
|
+
- I'm a heroine addict. I need to have sex with women who have saved someone's life.
|
|
45
|
+
- I wear a necklace, cause I wanna know when I'm upside down.
|
|
46
|
+
- You know when they have a fishing show on TV? They catch the fish and then let it go. They don't want to eat the fish, they just want to make it late for something.
|