├── .gitattributes ├── .github └── workflows │ ├── authenticate-images.yml │ ├── deployed-api-tests.yml │ └── local-api-tests.yml ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── Procfile ├── README.md ├── docs ├── .nojekyll ├── README.md ├── _navbar.md ├── _sidebar.md ├── assets │ ├── dark_icon.png │ ├── dark_logo.png │ ├── light_icon.png │ └── light_logo.png ├── attributions.md ├── client-libraries │ ├── node.md │ ├── python.md │ └── ruby.md ├── compendium-api.md ├── config.js ├── index.html ├── index.js ├── links.md ├── package.json ├── regions-api.md ├── self-hosting.md └── style.css ├── endpoints ├── __init__.py ├── compendium.py ├── db.py ├── exceptions.py ├── regions.py └── util.py ├── images ├── BOTW │ ├── ancient_arrow.png │ ├── ancient_battle_axe++.png │ ├── ancient_battle_axe+.png │ ├── ancient_battle_axe.png │ ├── ancient_bladesaw.png │ ├── ancient_bow.png │ ├── ancient_shield.png │ ├── ancient_short_sword.png │ ├── ancient_spear.png │ ├── apple.png │ ├── armoranth.png │ ├── armored_carp.png │ ├── armored_porgy.png │ ├── arrow.png │ ├── big_hearty_radish.png │ ├── big_hearty_truffle.png │ ├── black_bokoblin.png │ ├── black_hinox.png │ ├── black_lizalfos.png │ ├── black_moblin.png │ ├── bladed_rhino_beetle.png │ ├── blizzard_rod.png │ ├── blizzrobe.png │ ├── blue-maned_lynel.png │ ├── blue-winged_heron.png │ ├── blue_bokoblin.png │ ├── blue_hinox.png │ ├── blue_lizalfos.png │ ├── blue_moblin.png │ ├── blue_nightshade.png │ ├── blue_sparrow.png │ ├── blupee.png │ ├── boat_oar.png │ ├── boko_bat.png │ ├── boko_bow.png │ ├── boko_club.png │ ├── boko_shield.png │ ├── boko_spear.png │ ├── bokoblin.png │ ├── bokoblin_arm.png │ ├── bomb_arrow.png │ ├── boomerang.png │ ├── boulder_breaker.png │ ├── bow_of_light.png │ ├── bright-chested_duck.png │ ├── bright-eyed_crab.png │ ├── bushy-tailed_squirrel.png │ ├── calamity_ganon.png │ ├── ceremonial_trident.png │ ├── chillfin_trout.png │ ├── chillshroom.png │ ├── chuchu.png │ ├── cobble_crusher.png │ ├── cold-footed_wolf.png │ ├── cold_darner.png │ ├── common_sparrow.png │ ├── cool_safflina.png │ ├── courser_bee_honey.png │ ├── cucco.png │ ├── cursed_bokoblin.png │ ├── cursed_lizalfos.png │ ├── cursed_moblin.png │ ├── dark_beast_ganon.png │ ├── daybreaker.png │ ├── decayed_guardian.png │ ├── demon_carver.png │ ├── dinraal.png │ ├── donkey.png │ ├── double_axe.png │ ├── dragon_bone_boko_bow.png │ ├── dragonbone_boko_bat.png │ ├── dragonbone_boko_club.png │ ├── dragonbone_boko_shield.png │ ├── dragonbone_boko_spear.png │ ├── dragonbone_moblin_club.png │ ├── dragonbone_moblin_spear.png │ ├── drillshaft.png │ ├── duplex_bow.png │ ├── edge_of_duality.png │ ├── eightfold_blade.png │ ├── eightfold_longblade.png │ ├── eldin_ostrich.png │ ├── electric_chuchu.png │ ├── electric_darner.png │ ├── electric_keese.png │ ├── electric_lizalfos.png │ ├── electric_safflina.png │ ├── electric_wizzrobe.png │ ├── emblazoned_shield.png │ ├── endura_carrot.png │ ├── endura_shroom.png │ ├── energetic_rhino_beetle.png │ ├── enhanced_lizal_spear.png │ ├── fairy.png │ ├── falcon_bow.png │ ├── farmer's_pitchfork.png │ ├── farming_hoe.png │ ├── farosh.png │ ├── feathered_edge.png │ ├── feathered_spear.png │ ├── fire-breath_lizalfos.png │ ├── fire_arrow.png │ ├── fire_chuchu.png │ ├── fire_keese.png │ ├── fire_rod.png │ ├── fire_wizzrobe.png │ ├── fireblight_ganon.png │ ├── fireproof_lizard.png │ ├── fisherman's_shield.png │ ├── fishing_harpoon.png │ ├── flameblade.png │ ├── flamespear.png │ ├── fleet-lotus_seeds.png │ ├── forest_dweller's_bow.png │ ├── forest_dweller's_shield.png │ ├── forest_dweller's_spear.png │ ├── forest_dweller's_sword.png │ ├── forest_octorok.png │ ├── forked_lizal_spear.png │ ├── fortified_pumpkin.png │ ├── frost_pebblit.png │ ├── frost_talus.png │ ├── frostblade.png │ ├── frostspear.png │ ├── gerudo_scimitar.png │ ├── gerudo_shield.png │ ├── gerudo_spear.png │ ├── giant_boomerang.png │ ├── giant_horse.png │ ├── golden_bow.png │ ├── golden_claymore.png │ ├── golden_sparrow.png │ ├── grassland_fox.png │ ├── great-horned_rhinoceros.png │ ├── great_eagle_bow.png │ ├── great_flameblade.png │ ├── great_frostblade.png │ ├── great_thunderblade.png │ ├── grizzlemaw_bear.png │ ├── guardian_scout_i.png │ ├── guardian_scout_ii.png │ ├── guardian_scout_iii.png │ ├── guardian_scout_iv.png │ ├── guardian_shield++.png │ ├── guardian_shield+.png │ ├── guardian_shield.png │ ├── guardian_skywatcher.png │ ├── guardian_spear++.png │ ├── guardian_spear+.png │ ├── guardian_spear.png │ ├── guardian_stalker.png │ ├── guardian_sword++.png │ ├── guardian_sword+.png │ ├── guardian_sword.png │ ├── guardian_turret.png │ ├── hateno_cow.png │ ├── hearty_bass.png │ ├── hearty_blueshell_snail.png │ ├── hearty_durian.png │ ├── hearty_lizard.png │ ├── hearty_radish.png │ ├── hearty_salmon.png │ ├── hearty_truffle.png │ ├── highland_sheep.png │ ├── hightail_lizard.png │ ├── hinox.png │ ├── honeyvore_bear.png │ ├── horse.png │ ├── hot-footed_frog.png │ ├── hotfeather_pigeon.png │ ├── hunter's_shield.png │ ├── hydromelon.png │ ├── hylian_retriever.png │ ├── hylian_shield.png │ ├── hylian_shroom.png │ ├── hyrule_bass.png │ ├── hyrule_herb.png │ ├── ice-breath_lizalfos.png │ ├── ice_arrow.png │ ├── ice_chuchu.png │ ├── ice_keese.png │ ├── ice_rod.png │ ├── ice_wizzrobe.png │ ├── igneo_pebblit.png │ ├── igneo_talus.png │ ├── igneo_talus_titan.png │ ├── iron_sledgehammer.png │ ├── ironshell_crab.png │ ├── ironshroom.png │ ├── islander_hawk.png │ ├── keese.png │ ├── kite_shield.png │ ├── knight's_bow.png │ ├── knight's_broadsword.png │ ├── knight's_claymore.png │ ├── knight's_halberd.png │ ├── knight's_shield.png │ ├── korok_leaf.png │ ├── lightning_rod.png │ ├── lightscale_trident.png │ ├── lizal_boomerang.png │ ├── lizal_bow.png │ ├── lizal_forked_boomerang.png │ ├── lizal_shield.png │ ├── lizal_spear.png │ ├── lizal_tri-boomerang.png │ ├── lizalfos.png │ ├── lizalfos_arm.png │ ├── lord_of_the_mountain.png │ ├── luminous_ore_deposit.png │ ├── luminous_stone_deposit.png │ ├── lynel.png │ ├── lynel_bow.png │ ├── lynel_crusher.png │ ├── lynel_shield.png │ ├── lynel_spear.png │ ├── lynel_sword.png │ ├── maraudo_wolf.png │ ├── master_kohga.png │ ├── master_sword.png │ ├── meteo_wizzrobe.png │ ├── meteor_rod.png │ ├── mighty_bananas.png │ ├── mighty_carp.png │ ├── mighty_lynel_bow.png │ ├── mighty_lynel_crusher.png │ ├── mighty_lynel_shield.png │ ├── mighty_lynel_spear.png │ ├── mighty_lynel_sword.png │ ├── mighty_porgy.png │ ├── mighty_thistle.png │ ├── moblin.png │ ├── moblin_arm.png │ ├── moblin_club.png │ ├── moblin_spear.png │ ├── molduga.png │ ├── molduking.png │ ├── monk_maz_koshia.png │ ├── moonlight_scimitar.png │ ├── mountain_buck.png │ ├── mountain_crow.png │ ├── mountain_doe.png │ ├── mountain_goat.png │ ├── naydra.png │ ├── one-hit_obliterator.png │ ├── ore_deposit.png │ ├── palm_fruit.png │ ├── patricia.png │ ├── phrenic_bow.png │ ├── pink_heron.png │ ├── pot_lid.png │ ├── radiant_shield.png │ ├── rainbow_pigeon.png │ ├── rainbow_sparrow.png │ ├── rare_ore_deposit.png │ ├── razorclaw_crab.png │ ├── razorshroom.png │ ├── red-tusked_boar.png │ ├── red_sparrow.png │ ├── reinforced_lizal_shield.png │ ├── restless_cricket.png │ ├── rock_octorok.png │ ├── royal_bow.png │ ├── royal_broadsword.png │ ├── royal_claymore.png │ ├── royal_guard's_bow.png │ ├── royal_guard's_claymore.png │ ├── royal_guard's_shield.png │ ├── royal_guard's_spear.png │ ├── royal_guard's_sword.png │ ├── royal_halberd.png │ ├── royal_shield.png │ ├── rugged_rhino_beetle.png │ ├── rushroom.png │ ├── rusty_broadsword.png │ ├── rusty_claymore.png │ ├── rusty_halberd.png │ ├── rusty_shield.png │ ├── sand_seal.png │ ├── sand_sparrow.png │ ├── sanke_carp.png │ ├── savage_lynel_bow.png │ ├── savage_lynel_crusher.png │ ├── savage_lynel_shield.png │ ├── savage_lynel_spear.png │ ├── savage_lynel_sword.png │ ├── scimitar_of_the_seven.png │ ├── seagull.png │ ├── sentry.png │ ├── serpentine_spear.png │ ├── shield_of_the_mind's_eye.png │ ├── shock_arrow.png │ ├── silent_princess.png │ ├── silent_shroom.png │ ├── silver_bokoblin.png │ ├── silver_bow.png │ ├── silver_lizalfos.png │ ├── silver_longsword.png │ ├── silver_lynel.png │ ├── silver_moblin.png │ ├── silver_shield.png │ ├── silverscale_spear.png │ ├── sizzlefin_trout.png │ ├── smotherwing_butterfly.png │ ├── sneaky_river_snail.png │ ├── snow_octorok.png │ ├── snowcoat_fox.png │ ├── soldier's_bow.png │ ├── soldier's_broadsword.png │ ├── soldier's_claymore.png │ ├── soldier's_shield.png │ ├── soldier's_spear.png │ ├── soup_ladle.png │ ├── spicy_pepper.png │ ├── spiked_boko_bat.png │ ├── spiked_boko_bow.png │ ├── spiked_boko_club.png │ ├── spiked_boko_shield.png │ ├── spiked_boko_spear.png │ ├── spiked_moblin_club.png │ ├── spiked_moblin_spear.png │ ├── spring-loaded_hammer.png │ ├── stalhorse.png │ ├── stalizalfos.png │ ├── stalkoblin.png │ ├── stalmoblin.png │ ├── stalnox.png │ ├── stamella_shroom.png │ ├── staminoka_bass.png │ ├── stealthfin_trout.png │ ├── steel_lizal_bow.png │ ├── steel_lizal_shield.png │ ├── stone_pebblit.png │ ├── stone_smasher.png │ ├── stone_talus.png │ ├── stone_talus_(luminous).png │ ├── stone_talus_(rare).png │ ├── strengthened_lizal_bow.png │ ├── summerwing_butterfly.png │ ├── sunset_firefly.png │ ├── sunshroom.png │ ├── swallow_bow.png │ ├── swift_carrot.png │ ├── swift_violet.png │ ├── tabantha_moose.png │ ├── throwing_spear.png │ ├── thunder_wizzrobe.png │ ├── thunderblade.png │ ├── thunderblight_ganon.png │ ├── thunderspear.png │ ├── thunderstorm_rod.png │ ├── thunderwing_butterfly.png │ ├── tireless_frog.png │ ├── torch.png │ ├── traveler's_bow.png │ ├── traveler's_claymore.png │ ├── traveler's_shield.png │ ├── traveler's_spear.png │ ├── traveler's_sword.png │ ├── treasure_chest.png │ ├── treasure_octorok.png │ ├── tree_branch.png │ ├── vicious_sickle.png │ ├── voltfin_trout.png │ ├── voltfruit.png │ ├── warm_darner.png │ ├── warm_safflina.png │ ├── wasteland_coyote.png │ ├── water_buffalo.png │ ├── water_octorok.png │ ├── waterblight_ganon.png │ ├── white-maned_lynel.png │ ├── white_goat.png │ ├── white_horse.png │ ├── white_pigeon.png │ ├── wildberry.png │ ├── windblight_ganon.png │ ├── windcleaver.png │ ├── winterwing_butterfly.png │ ├── wood_pigeon.png │ ├── woodcutter's_axe.png │ ├── wooden_bow.png │ ├── wooden_mop.png │ ├── wooden_shield.png │ ├── woodland_boar.png │ ├── yiga_blademaster.png │ ├── yiga_footsoldier.png │ ├── zapshroom.png │ ├── zora_spear.png │ └── zora_sword.png ├── TOTK │ ├── .gitkeep │ ├── accented_pigeon.png │ ├── aerocuda.png │ ├── aerocuda_eyeball.png │ ├── ancient_arowana.png │ ├── apple.png │ ├── armoranth.png │ ├── armored_carp.png │ ├── armored_porgy.png │ ├── arrow.png │ ├── battle_talus.png │ ├── big_hearty_radish.png │ ├── big_hearty_truffle.png │ ├── biggoron's_sword.png │ ├── black_bokoblin.png │ ├── black_bokoblin_horn.png │ ├── black_boss_bokoblin.png │ ├── black_boss_bokoblin_horn.png │ ├── black_hinox.png │ ├── black_hinox_horn.png │ ├── black_horriblin.png │ ├── black_horriblin_horn.png │ ├── black_lizalfos.png │ ├── black_lizalfos_horn.png │ ├── black_moblin.png │ ├── black_moblin_horn.png │ ├── bladed_rhino_beetle.png │ ├── blizzrobe.png │ ├── blue-maned_lynel.png │ ├── blue-maned_lynel_mace_horn.png │ ├── blue-maned_lynel_saber_horn.png │ ├── blue-white_frox.png │ ├── blue-white_frox_fang.png │ ├── blue-winged_heron.png │ ├── blue_bokoblin.png │ ├── blue_bokoblin_horn.png │ ├── blue_boss_bokoblin.png │ ├── blue_boss_bokoblin_horn.png │ ├── blue_hinox.png │ ├── blue_hinox_horn.png │ ├── blue_horriblin.png │ ├── blue_horriblin_horn.png │ ├── blue_lizalfos.png │ ├── blue_lizalfos_horn.png │ ├── blue_moblin.png │ ├── blue_moblin_horn.png │ ├── blue_nightshade.png │ ├── blue_sparrow.png │ ├── blupee.png │ ├── boat_oar.png │ ├── boko_bow.png │ ├── boko_shield.png │ ├── bokoblin.png │ ├── bokoblin_arm.png │ ├── bokoblin_horn.png │ ├── bomb_flower.png │ ├── boomerang.png │ ├── boomerang_(new).png │ ├── boss_bokoblin.png │ ├── boss_bokoblin_horn.png │ ├── boulder_breaker.png │ ├── bright-chested_duck.png │ ├── bright-eyed_crab.png │ ├── brightbloom_seed.png │ ├── brightcap.png │ ├── bubbulfrog.png │ ├── bushy-tailed_squirrel.png │ ├── captain_construct_i.png │ ├── captain_construct_i_horn.png │ ├── captain_construct_ii.png │ ├── captain_construct_ii_horn.png │ ├── captain_construct_iii.png │ ├── captain_construct_iii_horn.png │ ├── captain_construct_iv.png │ ├── captain_construct_iv_horn.png │ ├── chillfin_trout.png │ ├── chillshroom.png │ ├── chuchu.png │ ├── chuchu_jelly.png │ ├── cloud_seagull.png │ ├── cobble_crusher.png │ ├── cobble_crusher_(new).png │ ├── cold-footed_wolf.png │ ├── cold_darner.png │ ├── colgera.png │ ├── common_sparrow.png │ ├── construct_bow.png │ ├── cool_safflina.png │ ├── courser_bee_honey.png │ ├── cucco.png │ ├── daybreaker.png │ ├── dazzlefruit.png │ ├── deep_firefly.png │ ├── demon_dragon.png │ ├── demon_king's_bow.png │ ├── demon_king_ganondorf.png │ ├── demon_king_ganondorf_(2nd_form).png │ ├── dinraal's_horn.png │ ├── dinraal.png │ ├── dondon.png │ ├── donkey.png │ ├── dragonbone_boko_bow.png │ ├── dragonbone_boko_shield.png │ ├── duplex_bow.png │ ├── dusk_bow.png │ ├── dusk_claymore.png │ ├── eightfold_blade.png │ ├── eightfold_blade_(new).png │ ├── eightfold_longblade.png │ ├── eightfold_longblade_(new).png │ ├── eldin_ostrich.png │ ├── electric_chuchu.png │ ├── electric_darner.png │ ├── electric_keese.png │ ├── electric_keese_eyeball.png │ ├── electric_lizalfos.png │ ├── electric_lizalfos_horn.png │ ├── electric_safflina.png │ ├── electric_wizzrobe.png │ ├── emblazoned_shield.png │ ├── endura_carrot.png │ ├── endura_shroom.png │ ├── energetic_rhino_beetle.png │ ├── evermean.png │ ├── fairy.png │ ├── falcon_bow.png │ ├── farmer's_pitchfork.png │ ├── farming_hoe.png │ ├── farosh's_horn.png │ ├── farosh.png │ ├── feathered_edge.png │ ├── feathered_edge_(new).png │ ├── feathered_spear.png │ ├── feathered_spear_(new).png │ ├── fierce_deity_sword.png │ ├── fire-breath_lizalfos.png │ ├── fire-breath_lizalfos_horn.png │ ├── fire_chuchu.png │ ├── fire_fruit.png │ ├── fire_keese.png │ ├── fire_keese_eyeball.png │ ├── fire_like.png │ ├── fire_like_stone.png │ ├── fire_wizzrobe.png │ ├── fireproof_lizard.png │ ├── fisherman's_shield.png │ ├── fishing_harpoon.png │ ├── flame_gleeok.png │ ├── fleet-lotus_seeds.png │ ├── flux_construct_i.png │ ├── flux_construct_ii.png │ ├── flux_construct_iii.png │ ├── forest_dweller's_bow.png │ ├── forest_dweller's_shield.png │ ├── forest_dweller's_spear.png │ ├── forest_dweller's_spear_(new).png │ ├── forest_dweller's_sword.png │ ├── forest_dweller's_sword_(new).png │ ├── forest_octorok.png │ ├── forest_ostrich.png │ ├── fortified_pumpkin.png │ ├── frost_gleeok.png │ ├── frost_pebblit.png │ ├── frost_talus.png │ ├── frox.png │ ├── frox_fang.png │ ├── gerudo_bow.png │ ├── gerudo_claymore.png │ ├── gerudo_claymore_(new).png │ ├── gerudo_scimitar.png │ ├── gerudo_scimitar_(new).png │ ├── gerudo_shield.png │ ├── gerudo_spear.png │ ├── gerudo_spear_(new).png │ ├── giant_boomerang.png │ ├── giant_boomerang_(new).png │ ├── giant_brightbloom_seed.png │ ├── giant_horse.png │ ├── giant_white_stallion.png │ ├── gibdo.png │ ├── gibdo_bone.png │ ├── gleeok_flame_horn.png │ ├── gleeok_frost_horn.png │ ├── gleeok_thunder_horn.png │ ├── gloom_club.png │ ├── gloom_spear.png │ ├── gloom_sword.png │ ├── glowing_cave_fish.png │ ├── gnarled_long_stick.png │ ├── gnarled_thick_stick.png │ ├── gnarled_wooden_stick.png │ ├── golden_apple.png │ ├── golden_horse.png │ ├── golden_sparrow.png │ ├── grassland_fox.png │ ├── great_eagle_bow.png │ ├── grizzlemaw_bear.png │ ├── hateno_cow.png │ ├── hearty_bass.png │ ├── hearty_lizard.png │ ├── hearty_radish.png │ ├── hearty_salmon.png │ ├── hearty_truffle.png │ ├── highland_sheep.png │ ├── hightail_lizard.png │ ├── hinox.png │ ├── hinox_horn.png │ ├── honeyvore_bear.png │ ├── horriblin.png │ ├── horriblin_horn.png │ ├── horse.png │ ├── hot-footed_frog.png │ ├── hotfeather_pigeon.png │ ├── hunter's_shield.png │ ├── hydromelon.png │ ├── hylian_pine_cone.png │ ├── hylian_retriever.png │ ├── hylian_shield.png │ ├── hylian_shroom.png │ ├── hylian_tomato.png │ ├── hyrule_bass.png │ ├── hyrule_herb.png │ ├── ice-breath_lizalfos.png │ ├── ice-breath_lizalfos_horn.png │ ├── ice_chuchu.png │ ├── ice_fruit.png │ ├── ice_keese.png │ ├── ice_keese_eyeball.png │ ├── ice_like.png │ ├── ice_like_stone.png │ ├── ice_wizzrobe.png │ ├── igneo_pebblit.png │ ├── igneo_talus.png │ ├── ironshell_crab.png │ ├── ironshroom.png │ ├── islander_hawk.png │ ├── keese.png │ ├── keese_eyeball.png │ ├── king_gleeok.png │ ├── kite_shield.png │ ├── knight's_bow.png │ ├── knight's_broadsword.png │ ├── knight's_broadsword_(new).png │ ├── knight's_claymore.png │ ├── knight's_claymore_(new).png │ ├── knight's_halberd.png │ ├── knight's_halberd_(new).png │ ├── knight's_shield.png │ ├── korok_frond.png │ ├── light_dragon's_horn.png │ ├── light_dragon.png │ ├── lightscale_trident.png │ ├── like_like.png │ ├── like_like_stone.png │ ├── little_frox.png │ ├── lizal_boomerang.png │ ├── lizal_bow.png │ ├── lizal_shield.png │ ├── lizalfos.png │ ├── lizalfos_arm.png │ ├── lizalfos_horn.png │ ├── long_stick.png │ ├── luminous_stone_deposit.png │ ├── lynel.png │ ├── lynel_bow.png │ ├── lynel_mace_horn.png │ ├── lynel_saber_horn.png │ ├── lynel_shield.png │ ├── magic_rod.png │ ├── magic_scepter.png │ ├── magic_staff.png │ ├── maraudo_wolf.png │ ├── marbled_gohma.png │ ├── master_kohga.png │ ├── master_sword.png │ ├── meteo_wizzrobe.png │ ├── mighty_bananas.png │ ├── mighty_carp.png │ ├── mighty_construct_bow.png │ ├── mighty_lynel_bow.png │ ├── mighty_lynel_shield.png │ ├── mighty_porgy.png │ ├── mighty_thistle.png │ ├── mighty_zonaite_longsword.png │ ├── mighty_zonaite_shield.png │ ├── mighty_zonaite_spear.png │ ├── mighty_zonaite_sword.png │ ├── moblin.png │ ├── moblin_arm.png │ ├── moblin_horn.png │ ├── molduga.png │ ├── molduga_jaw.png │ ├── moragia.png │ ├── moth_gibdo.png │ ├── mountain_buck.png │ ├── mountain_crow.png │ ├── mountain_doe.png │ ├── mountain_goat.png │ ├── mucktorok.png │ ├── muddle_bud.png │ ├── naydra's_horn.png │ ├── naydra.png │ ├── obsidian_frox.png │ ├── obsidian_frox_fang.png │ ├── old_wooden_bow.png │ ├── old_wooden_shield.png │ ├── ore_deposit.png │ ├── palm_fruit.png │ ├── patricia.png │ ├── phantom_ganon.png │ ├── phrenic_bow.png │ ├── pink_heron.png │ ├── pot_lid.png │ ├── puffshroom.png │ ├── queen_gibdo.png │ ├── radiant_shield.png │ ├── rainbow_pigeon.png │ ├── rainbow_sparrow.png │ ├── rare_ore_deposit.png │ ├── razorclaw_crab.png │ ├── razorshroom.png │ ├── red-tusked_boar.png │ ├── red_chuchu_jelly.png │ ├── red_sparrow.png │ ├── reinforced_lizal_shield.png │ ├── restless_cricket.png │ ├── rock_like.png │ ├── rock_octorok.png │ ├── royal_bow.png │ ├── royal_broadsword.png │ ├── royal_broadsword_(new).png │ ├── royal_claymore.png │ ├── royal_claymore_(new).png │ ├── royal_guard's_bow.png │ ├── royal_guard's_claymore.png │ ├── royal_guard's_claymore_(new).png │ ├── royal_guard's_shield.png │ ├── royal_guard's_spear.png │ ├── royal_guard's_spear_(new).png │ ├── royal_guard's_sword.png │ ├── royal_guard's_sword_(new).png │ ├── royal_halberd.png │ ├── royal_halberd_(new).png │ ├── royal_shield.png │ ├── rugged_rhino_beetle.png │ ├── rushroom.png │ ├── rusty_broadsword.png │ ├── rusty_claymore.png │ ├── rusty_halberd.png │ ├── rusty_shield.png │ ├── sand_seal.png │ ├── sand_sparrow.png │ ├── sanke_carp.png │ ├── savage_lynel_bow.png │ ├── savage_lynel_shield.png │ ├── scimitar_of_the_seven.png │ ├── sea-breeze_boomerang.png │ ├── sea-breeze_shield.png │ ├── seagull.png │ ├── seized_construct.png │ ├── shard_of_dinraal's_spike.png │ ├── shard_of_farosh's_spike.png │ ├── shard_of_light_dragon's_spike.png │ ├── shard_of_naydra's_spike.png │ ├── shield_of_the_mind's_eye.png │ ├── shock_fruit.png │ ├── shock_like.png │ ├── shock_like_stone.png │ ├── silent_princess.png │ ├── silent_shroom.png │ ├── silver_bokoblin.png │ ├── silver_bokoblin_horn.png │ ├── silver_boss_bokoblin.png │ ├── silver_boss_bokoblin_horn.png │ ├── silver_horriblin.png │ ├── silver_horriblin_horn.png │ ├── silver_lizalfos.png │ ├── silver_lizalfos_horn.png │ ├── silver_lynel.png │ ├── silver_lynel_mace_horn.png │ ├── silver_lynel_saber_horn.png │ ├── silver_moblin.png │ ├── silver_moblin_horn.png │ ├── sizzlefin_trout.png │ ├── skyshroom.png │ ├── sludge_like.png │ ├── smotherwing_butterfly.png │ ├── sneaky_river_snail.png │ ├── snow_octorok.png │ ├── snowcoat_fox.png │ ├── soldier's_bow.png │ ├── soldier's_broadsword.png │ ├── soldier's_broadsword_(new).png │ ├── soldier's_claymore.png │ ├── soldier's_claymore_(new).png │ ├── soldier's_shield.png │ ├── soldier's_spear.png │ ├── soldier's_spear_(new).png │ ├── soldier_construct_horn.png │ ├── soldier_construct_i.png │ ├── soldier_construct_ii.png │ ├── soldier_construct_ii_horn.png │ ├── soldier_construct_iii.png │ ├── soldier_construct_iii_horn.png │ ├── soldier_construct_iv.png │ ├── soldier_construct_iv_horn.png │ ├── soup_ladle.png │ ├── spicy_pepper.png │ ├── spiked_boko_bow.png │ ├── spiked_boko_shield.png │ ├── splash_fruit.png │ ├── stalhorse.png │ ├── stalizalfos.png │ ├── stalkoblin.png │ ├── stalmoblin.png │ ├── stalnox.png │ ├── stalnox_horn.png │ ├── stambulb.png │ ├── stamella_shroom.png │ ├── staminoka_bass.png │ ├── stealthfin_trout.png │ ├── steel_lizal_bow.png │ ├── steel_lizal_shield.png │ ├── sticky_frog.png │ ├── sticky_lizard.png │ ├── stone_pebblit.png │ ├── stone_talus.png │ ├── stone_talus_(luminous).png │ ├── stone_talus_(rare).png │ ├── strengthened_lizal_bow.png │ ├── strong_construct_bow.png │ ├── strong_zonaite_longsword.png │ ├── strong_zonaite_shield.png │ ├── strong_zonaite_spear.png │ ├── strong_zonaite_sword.png │ ├── sturdy_long_stick.png │ ├── sturdy_thick_stick.png │ ├── sturdy_wooden_stick.png │ ├── summerwing_butterfly.png │ ├── sun_pumpkin.png │ ├── sundelion.png │ ├── sunset_firefly.png │ ├── sunshroom.png │ ├── swallow_bow.png │ ├── swift_carrot.png │ ├── swift_violet.png │ ├── sword_of_the_hero.png │ ├── tabantha_moose.png │ ├── thick_stick.png │ ├── throwing_spear.png │ ├── throwing_spear_(new).png │ ├── thunder_gleeok.png │ ├── thunder_wizzrobe.png │ ├── thunderwing_butterfly.png │ ├── tireless_frog.png │ ├── torch.png │ ├── training_construct.png │ ├── traveler's_bow.png │ ├── traveler's_claymore.png │ ├── traveler's_claymore_(new).png │ ├── traveler's_shield.png │ ├── traveler's_spear.png │ ├── traveler's_spear_(new).png │ ├── traveler's_sword.png │ ├── traveler's_sword_(new).png │ ├── treasure_chest.png │ ├── treasure_octorok.png │ ├── tree_branch.png │ ├── voltfin_trout.png │ ├── voltfruit.png │ ├── warm_darner.png │ ├── warm_safflina.png │ ├── wasteland_coyote.png │ ├── water_buffalo.png │ ├── water_octorok.png │ ├── well.png │ ├── white-maned_lynel.png │ ├── white-maned_lynel_mace_horn.png │ ├── white-maned_lynel_saber_horn.png │ ├── white_chuchu_jelly.png │ ├── white_goat.png │ ├── white_horse.png │ ├── white_pigeon.png │ ├── white_sword_of_the_sky.png │ ├── wildberry.png │ ├── winterwing_butterfly.png │ ├── wood_pigeon.png │ ├── wooden_bow.png │ ├── wooden_mop.png │ ├── wooden_shield.png │ ├── wooden_stick.png │ ├── woodland_boar.png │ ├── yellow_chuchu_jelly.png │ ├── yiga_blademaster.png │ ├── yiga_footsoldier.png │ ├── zapshroom.png │ ├── zonaite_bow.png │ ├── zonaite_deposit.png │ ├── zonaite_longsword.png │ ├── zonaite_shield.png │ ├── zonaite_spear.png │ ├── zonaite_sword.png │ ├── zora_bow.png │ ├── zora_longsword.png │ ├── zora_longsword_(new).png │ ├── zora_shield.png │ ├── zora_spear.png │ ├── zora_spear_(new).png │ ├── zora_sword.png │ └── zora_sword_(new).png └── master_mode-BOTW │ ├── golden_bokoblin.png │ ├── golden_lizalfos.png │ ├── golden_lynel.png │ ├── golden_moblin.png │ └── sky_octorok.png ├── requirements.txt ├── run.sh ├── runtime.txt ├── server.py └── tests ├── .mocharc.json ├── README.md ├── package-lock.json ├── package.json ├── test ├── types.ts ├── v2.ts └── v3 │ ├── botw.ts │ ├── index.ts │ ├── totk.ts │ └── util.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sql linguist-detectable=true 2 | *.sql linguist-language=sql -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "hbenl.vscode-mocha-test-adapter", 4 | "rocksetinc.rockset-vscode", 5 | ] 6 | } -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bash run.sh -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/docs/.nojekyll -------------------------------------------------------------------------------- /docs/_navbar.md: -------------------------------------------------------------------------------- 1 | By **[Aarav Borthakur](https://github.com/gadhagod)** -------------------------------------------------------------------------------- /docs/assets/dark_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/docs/assets/dark_icon.png -------------------------------------------------------------------------------- /docs/assets/dark_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/docs/assets/dark_logo.png -------------------------------------------------------------------------------- /docs/assets/light_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/docs/assets/light_icon.png -------------------------------------------------------------------------------- /docs/assets/light_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/docs/assets/light_logo.png -------------------------------------------------------------------------------- /images/BOTW/ancient_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ancient_arrow.png -------------------------------------------------------------------------------- /images/BOTW/ancient_battle_axe+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ancient_battle_axe+.png -------------------------------------------------------------------------------- /images/BOTW/ancient_battle_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ancient_battle_axe.png -------------------------------------------------------------------------------- /images/BOTW/ancient_bladesaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ancient_bladesaw.png -------------------------------------------------------------------------------- /images/BOTW/ancient_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ancient_bow.png -------------------------------------------------------------------------------- /images/BOTW/ancient_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ancient_shield.png -------------------------------------------------------------------------------- /images/BOTW/ancient_short_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ancient_short_sword.png -------------------------------------------------------------------------------- /images/BOTW/ancient_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ancient_spear.png -------------------------------------------------------------------------------- /images/BOTW/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/apple.png -------------------------------------------------------------------------------- /images/BOTW/armoranth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/armoranth.png -------------------------------------------------------------------------------- /images/BOTW/armored_carp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/armored_carp.png -------------------------------------------------------------------------------- /images/BOTW/armored_porgy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/armored_porgy.png -------------------------------------------------------------------------------- /images/BOTW/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/arrow.png -------------------------------------------------------------------------------- /images/BOTW/big_hearty_radish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/big_hearty_radish.png -------------------------------------------------------------------------------- /images/BOTW/big_hearty_truffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/big_hearty_truffle.png -------------------------------------------------------------------------------- /images/BOTW/black_bokoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/black_bokoblin.png -------------------------------------------------------------------------------- /images/BOTW/black_hinox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/black_hinox.png -------------------------------------------------------------------------------- /images/BOTW/black_lizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/black_lizalfos.png -------------------------------------------------------------------------------- /images/BOTW/black_moblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/black_moblin.png -------------------------------------------------------------------------------- /images/BOTW/bladed_rhino_beetle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/bladed_rhino_beetle.png -------------------------------------------------------------------------------- /images/BOTW/blizzard_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/blizzard_rod.png -------------------------------------------------------------------------------- /images/BOTW/blizzrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/blizzrobe.png -------------------------------------------------------------------------------- /images/BOTW/blue-maned_lynel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/blue-maned_lynel.png -------------------------------------------------------------------------------- /images/BOTW/blue-winged_heron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/blue-winged_heron.png -------------------------------------------------------------------------------- /images/BOTW/blue_bokoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/blue_bokoblin.png -------------------------------------------------------------------------------- /images/BOTW/blue_hinox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/blue_hinox.png -------------------------------------------------------------------------------- /images/BOTW/blue_lizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/blue_lizalfos.png -------------------------------------------------------------------------------- /images/BOTW/blue_moblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/blue_moblin.png -------------------------------------------------------------------------------- /images/BOTW/blue_nightshade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/blue_nightshade.png -------------------------------------------------------------------------------- /images/BOTW/blue_sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/blue_sparrow.png -------------------------------------------------------------------------------- /images/BOTW/blupee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/blupee.png -------------------------------------------------------------------------------- /images/BOTW/boat_oar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/boat_oar.png -------------------------------------------------------------------------------- /images/BOTW/boko_bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/boko_bat.png -------------------------------------------------------------------------------- /images/BOTW/boko_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/boko_bow.png -------------------------------------------------------------------------------- /images/BOTW/boko_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/boko_club.png -------------------------------------------------------------------------------- /images/BOTW/boko_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/boko_shield.png -------------------------------------------------------------------------------- /images/BOTW/boko_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/boko_spear.png -------------------------------------------------------------------------------- /images/BOTW/bokoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/bokoblin.png -------------------------------------------------------------------------------- /images/BOTW/bokoblin_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/bokoblin_arm.png -------------------------------------------------------------------------------- /images/BOTW/bomb_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/bomb_arrow.png -------------------------------------------------------------------------------- /images/BOTW/boomerang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/boomerang.png -------------------------------------------------------------------------------- /images/BOTW/boulder_breaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/boulder_breaker.png -------------------------------------------------------------------------------- /images/BOTW/bow_of_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/bow_of_light.png -------------------------------------------------------------------------------- /images/BOTW/bright-chested_duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/bright-chested_duck.png -------------------------------------------------------------------------------- /images/BOTW/bright-eyed_crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/bright-eyed_crab.png -------------------------------------------------------------------------------- /images/BOTW/calamity_ganon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/calamity_ganon.png -------------------------------------------------------------------------------- /images/BOTW/ceremonial_trident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ceremonial_trident.png -------------------------------------------------------------------------------- /images/BOTW/chillfin_trout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/chillfin_trout.png -------------------------------------------------------------------------------- /images/BOTW/chillshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/chillshroom.png -------------------------------------------------------------------------------- /images/BOTW/chuchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/chuchu.png -------------------------------------------------------------------------------- /images/BOTW/cobble_crusher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/cobble_crusher.png -------------------------------------------------------------------------------- /images/BOTW/cold-footed_wolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/cold-footed_wolf.png -------------------------------------------------------------------------------- /images/BOTW/cold_darner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/cold_darner.png -------------------------------------------------------------------------------- /images/BOTW/common_sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/common_sparrow.png -------------------------------------------------------------------------------- /images/BOTW/cool_safflina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/cool_safflina.png -------------------------------------------------------------------------------- /images/BOTW/courser_bee_honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/courser_bee_honey.png -------------------------------------------------------------------------------- /images/BOTW/cucco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/cucco.png -------------------------------------------------------------------------------- /images/BOTW/cursed_bokoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/cursed_bokoblin.png -------------------------------------------------------------------------------- /images/BOTW/cursed_lizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/cursed_lizalfos.png -------------------------------------------------------------------------------- /images/BOTW/cursed_moblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/cursed_moblin.png -------------------------------------------------------------------------------- /images/BOTW/dark_beast_ganon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/dark_beast_ganon.png -------------------------------------------------------------------------------- /images/BOTW/daybreaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/daybreaker.png -------------------------------------------------------------------------------- /images/BOTW/decayed_guardian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/decayed_guardian.png -------------------------------------------------------------------------------- /images/BOTW/demon_carver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/demon_carver.png -------------------------------------------------------------------------------- /images/BOTW/dinraal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/dinraal.png -------------------------------------------------------------------------------- /images/BOTW/donkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/donkey.png -------------------------------------------------------------------------------- /images/BOTW/double_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/double_axe.png -------------------------------------------------------------------------------- /images/BOTW/dragonbone_boko_bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/dragonbone_boko_bat.png -------------------------------------------------------------------------------- /images/BOTW/drillshaft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/drillshaft.png -------------------------------------------------------------------------------- /images/BOTW/duplex_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/duplex_bow.png -------------------------------------------------------------------------------- /images/BOTW/edge_of_duality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/edge_of_duality.png -------------------------------------------------------------------------------- /images/BOTW/eightfold_blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/eightfold_blade.png -------------------------------------------------------------------------------- /images/BOTW/eightfold_longblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/eightfold_longblade.png -------------------------------------------------------------------------------- /images/BOTW/eldin_ostrich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/eldin_ostrich.png -------------------------------------------------------------------------------- /images/BOTW/electric_chuchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/electric_chuchu.png -------------------------------------------------------------------------------- /images/BOTW/electric_darner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/electric_darner.png -------------------------------------------------------------------------------- /images/BOTW/electric_keese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/electric_keese.png -------------------------------------------------------------------------------- /images/BOTW/electric_lizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/electric_lizalfos.png -------------------------------------------------------------------------------- /images/BOTW/electric_safflina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/electric_safflina.png -------------------------------------------------------------------------------- /images/BOTW/electric_wizzrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/electric_wizzrobe.png -------------------------------------------------------------------------------- /images/BOTW/emblazoned_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/emblazoned_shield.png -------------------------------------------------------------------------------- /images/BOTW/endura_carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/endura_carrot.png -------------------------------------------------------------------------------- /images/BOTW/endura_shroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/endura_shroom.png -------------------------------------------------------------------------------- /images/BOTW/fairy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/fairy.png -------------------------------------------------------------------------------- /images/BOTW/falcon_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/falcon_bow.png -------------------------------------------------------------------------------- /images/BOTW/farmer's_pitchfork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/farmer's_pitchfork.png -------------------------------------------------------------------------------- /images/BOTW/farming_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/farming_hoe.png -------------------------------------------------------------------------------- /images/BOTW/farosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/farosh.png -------------------------------------------------------------------------------- /images/BOTW/feathered_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/feathered_edge.png -------------------------------------------------------------------------------- /images/BOTW/feathered_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/feathered_spear.png -------------------------------------------------------------------------------- /images/BOTW/fire_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/fire_arrow.png -------------------------------------------------------------------------------- /images/BOTW/fire_chuchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/fire_chuchu.png -------------------------------------------------------------------------------- /images/BOTW/fire_keese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/fire_keese.png -------------------------------------------------------------------------------- /images/BOTW/fire_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/fire_rod.png -------------------------------------------------------------------------------- /images/BOTW/fire_wizzrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/fire_wizzrobe.png -------------------------------------------------------------------------------- /images/BOTW/fireblight_ganon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/fireblight_ganon.png -------------------------------------------------------------------------------- /images/BOTW/fireproof_lizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/fireproof_lizard.png -------------------------------------------------------------------------------- /images/BOTW/fisherman's_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/fisherman's_shield.png -------------------------------------------------------------------------------- /images/BOTW/fishing_harpoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/fishing_harpoon.png -------------------------------------------------------------------------------- /images/BOTW/flameblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/flameblade.png -------------------------------------------------------------------------------- /images/BOTW/flamespear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/flamespear.png -------------------------------------------------------------------------------- /images/BOTW/fleet-lotus_seeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/fleet-lotus_seeds.png -------------------------------------------------------------------------------- /images/BOTW/forest_octorok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/forest_octorok.png -------------------------------------------------------------------------------- /images/BOTW/forked_lizal_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/forked_lizal_spear.png -------------------------------------------------------------------------------- /images/BOTW/fortified_pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/fortified_pumpkin.png -------------------------------------------------------------------------------- /images/BOTW/frost_pebblit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/frost_pebblit.png -------------------------------------------------------------------------------- /images/BOTW/frost_talus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/frost_talus.png -------------------------------------------------------------------------------- /images/BOTW/frostblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/frostblade.png -------------------------------------------------------------------------------- /images/BOTW/frostspear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/frostspear.png -------------------------------------------------------------------------------- /images/BOTW/gerudo_scimitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/gerudo_scimitar.png -------------------------------------------------------------------------------- /images/BOTW/gerudo_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/gerudo_shield.png -------------------------------------------------------------------------------- /images/BOTW/gerudo_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/gerudo_spear.png -------------------------------------------------------------------------------- /images/BOTW/giant_boomerang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/giant_boomerang.png -------------------------------------------------------------------------------- /images/BOTW/giant_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/giant_horse.png -------------------------------------------------------------------------------- /images/BOTW/golden_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/golden_bow.png -------------------------------------------------------------------------------- /images/BOTW/golden_claymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/golden_claymore.png -------------------------------------------------------------------------------- /images/BOTW/golden_sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/golden_sparrow.png -------------------------------------------------------------------------------- /images/BOTW/grassland_fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/grassland_fox.png -------------------------------------------------------------------------------- /images/BOTW/great_eagle_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/great_eagle_bow.png -------------------------------------------------------------------------------- /images/BOTW/great_flameblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/great_flameblade.png -------------------------------------------------------------------------------- /images/BOTW/great_frostblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/great_frostblade.png -------------------------------------------------------------------------------- /images/BOTW/great_thunderblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/great_thunderblade.png -------------------------------------------------------------------------------- /images/BOTW/grizzlemaw_bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/grizzlemaw_bear.png -------------------------------------------------------------------------------- /images/BOTW/guardian_scout_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_scout_i.png -------------------------------------------------------------------------------- /images/BOTW/guardian_scout_ii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_scout_ii.png -------------------------------------------------------------------------------- /images/BOTW/guardian_scout_iii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_scout_iii.png -------------------------------------------------------------------------------- /images/BOTW/guardian_scout_iv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_scout_iv.png -------------------------------------------------------------------------------- /images/BOTW/guardian_shield++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_shield++.png -------------------------------------------------------------------------------- /images/BOTW/guardian_shield+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_shield+.png -------------------------------------------------------------------------------- /images/BOTW/guardian_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_shield.png -------------------------------------------------------------------------------- /images/BOTW/guardian_skywatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_skywatcher.png -------------------------------------------------------------------------------- /images/BOTW/guardian_spear++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_spear++.png -------------------------------------------------------------------------------- /images/BOTW/guardian_spear+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_spear+.png -------------------------------------------------------------------------------- /images/BOTW/guardian_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_spear.png -------------------------------------------------------------------------------- /images/BOTW/guardian_stalker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_stalker.png -------------------------------------------------------------------------------- /images/BOTW/guardian_sword++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_sword++.png -------------------------------------------------------------------------------- /images/BOTW/guardian_sword+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_sword+.png -------------------------------------------------------------------------------- /images/BOTW/guardian_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_sword.png -------------------------------------------------------------------------------- /images/BOTW/guardian_turret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/guardian_turret.png -------------------------------------------------------------------------------- /images/BOTW/hateno_cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hateno_cow.png -------------------------------------------------------------------------------- /images/BOTW/hearty_bass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hearty_bass.png -------------------------------------------------------------------------------- /images/BOTW/hearty_durian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hearty_durian.png -------------------------------------------------------------------------------- /images/BOTW/hearty_lizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hearty_lizard.png -------------------------------------------------------------------------------- /images/BOTW/hearty_radish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hearty_radish.png -------------------------------------------------------------------------------- /images/BOTW/hearty_salmon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hearty_salmon.png -------------------------------------------------------------------------------- /images/BOTW/hearty_truffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hearty_truffle.png -------------------------------------------------------------------------------- /images/BOTW/highland_sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/highland_sheep.png -------------------------------------------------------------------------------- /images/BOTW/hightail_lizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hightail_lizard.png -------------------------------------------------------------------------------- /images/BOTW/hinox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hinox.png -------------------------------------------------------------------------------- /images/BOTW/honeyvore_bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/honeyvore_bear.png -------------------------------------------------------------------------------- /images/BOTW/horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/horse.png -------------------------------------------------------------------------------- /images/BOTW/hot-footed_frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hot-footed_frog.png -------------------------------------------------------------------------------- /images/BOTW/hotfeather_pigeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hotfeather_pigeon.png -------------------------------------------------------------------------------- /images/BOTW/hunter's_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hunter's_shield.png -------------------------------------------------------------------------------- /images/BOTW/hydromelon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hydromelon.png -------------------------------------------------------------------------------- /images/BOTW/hylian_retriever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hylian_retriever.png -------------------------------------------------------------------------------- /images/BOTW/hylian_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hylian_shield.png -------------------------------------------------------------------------------- /images/BOTW/hylian_shroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hylian_shroom.png -------------------------------------------------------------------------------- /images/BOTW/hyrule_bass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hyrule_bass.png -------------------------------------------------------------------------------- /images/BOTW/hyrule_herb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/hyrule_herb.png -------------------------------------------------------------------------------- /images/BOTW/ice-breath_lizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ice-breath_lizalfos.png -------------------------------------------------------------------------------- /images/BOTW/ice_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ice_arrow.png -------------------------------------------------------------------------------- /images/BOTW/ice_chuchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ice_chuchu.png -------------------------------------------------------------------------------- /images/BOTW/ice_keese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ice_keese.png -------------------------------------------------------------------------------- /images/BOTW/ice_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ice_rod.png -------------------------------------------------------------------------------- /images/BOTW/ice_wizzrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ice_wizzrobe.png -------------------------------------------------------------------------------- /images/BOTW/igneo_pebblit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/igneo_pebblit.png -------------------------------------------------------------------------------- /images/BOTW/igneo_talus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/igneo_talus.png -------------------------------------------------------------------------------- /images/BOTW/igneo_talus_titan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/igneo_talus_titan.png -------------------------------------------------------------------------------- /images/BOTW/iron_sledgehammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/iron_sledgehammer.png -------------------------------------------------------------------------------- /images/BOTW/ironshell_crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ironshell_crab.png -------------------------------------------------------------------------------- /images/BOTW/ironshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ironshroom.png -------------------------------------------------------------------------------- /images/BOTW/islander_hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/islander_hawk.png -------------------------------------------------------------------------------- /images/BOTW/keese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/keese.png -------------------------------------------------------------------------------- /images/BOTW/kite_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/kite_shield.png -------------------------------------------------------------------------------- /images/BOTW/knight's_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/knight's_bow.png -------------------------------------------------------------------------------- /images/BOTW/knight's_broadsword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/knight's_broadsword.png -------------------------------------------------------------------------------- /images/BOTW/knight's_claymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/knight's_claymore.png -------------------------------------------------------------------------------- /images/BOTW/knight's_halberd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/knight's_halberd.png -------------------------------------------------------------------------------- /images/BOTW/knight's_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/knight's_shield.png -------------------------------------------------------------------------------- /images/BOTW/korok_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/korok_leaf.png -------------------------------------------------------------------------------- /images/BOTW/lightning_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lightning_rod.png -------------------------------------------------------------------------------- /images/BOTW/lightscale_trident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lightscale_trident.png -------------------------------------------------------------------------------- /images/BOTW/lizal_boomerang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lizal_boomerang.png -------------------------------------------------------------------------------- /images/BOTW/lizal_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lizal_bow.png -------------------------------------------------------------------------------- /images/BOTW/lizal_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lizal_shield.png -------------------------------------------------------------------------------- /images/BOTW/lizal_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lizal_spear.png -------------------------------------------------------------------------------- /images/BOTW/lizal_tri-boomerang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lizal_tri-boomerang.png -------------------------------------------------------------------------------- /images/BOTW/lizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lizalfos.png -------------------------------------------------------------------------------- /images/BOTW/lizalfos_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lizalfos_arm.png -------------------------------------------------------------------------------- /images/BOTW/lynel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lynel.png -------------------------------------------------------------------------------- /images/BOTW/lynel_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lynel_bow.png -------------------------------------------------------------------------------- /images/BOTW/lynel_crusher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lynel_crusher.png -------------------------------------------------------------------------------- /images/BOTW/lynel_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lynel_shield.png -------------------------------------------------------------------------------- /images/BOTW/lynel_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lynel_spear.png -------------------------------------------------------------------------------- /images/BOTW/lynel_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/lynel_sword.png -------------------------------------------------------------------------------- /images/BOTW/maraudo_wolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/maraudo_wolf.png -------------------------------------------------------------------------------- /images/BOTW/master_kohga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/master_kohga.png -------------------------------------------------------------------------------- /images/BOTW/master_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/master_sword.png -------------------------------------------------------------------------------- /images/BOTW/meteo_wizzrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/meteo_wizzrobe.png -------------------------------------------------------------------------------- /images/BOTW/meteor_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/meteor_rod.png -------------------------------------------------------------------------------- /images/BOTW/mighty_bananas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/mighty_bananas.png -------------------------------------------------------------------------------- /images/BOTW/mighty_carp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/mighty_carp.png -------------------------------------------------------------------------------- /images/BOTW/mighty_lynel_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/mighty_lynel_bow.png -------------------------------------------------------------------------------- /images/BOTW/mighty_lynel_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/mighty_lynel_shield.png -------------------------------------------------------------------------------- /images/BOTW/mighty_lynel_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/mighty_lynel_spear.png -------------------------------------------------------------------------------- /images/BOTW/mighty_lynel_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/mighty_lynel_sword.png -------------------------------------------------------------------------------- /images/BOTW/mighty_porgy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/mighty_porgy.png -------------------------------------------------------------------------------- /images/BOTW/mighty_thistle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/mighty_thistle.png -------------------------------------------------------------------------------- /images/BOTW/moblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/moblin.png -------------------------------------------------------------------------------- /images/BOTW/moblin_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/moblin_arm.png -------------------------------------------------------------------------------- /images/BOTW/moblin_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/moblin_club.png -------------------------------------------------------------------------------- /images/BOTW/moblin_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/moblin_spear.png -------------------------------------------------------------------------------- /images/BOTW/molduga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/molduga.png -------------------------------------------------------------------------------- /images/BOTW/molduking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/molduking.png -------------------------------------------------------------------------------- /images/BOTW/monk_maz_koshia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/monk_maz_koshia.png -------------------------------------------------------------------------------- /images/BOTW/moonlight_scimitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/moonlight_scimitar.png -------------------------------------------------------------------------------- /images/BOTW/mountain_buck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/mountain_buck.png -------------------------------------------------------------------------------- /images/BOTW/mountain_crow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/mountain_crow.png -------------------------------------------------------------------------------- /images/BOTW/mountain_doe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/mountain_doe.png -------------------------------------------------------------------------------- /images/BOTW/mountain_goat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/mountain_goat.png -------------------------------------------------------------------------------- /images/BOTW/naydra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/naydra.png -------------------------------------------------------------------------------- /images/BOTW/one-hit_obliterator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/one-hit_obliterator.png -------------------------------------------------------------------------------- /images/BOTW/ore_deposit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/ore_deposit.png -------------------------------------------------------------------------------- /images/BOTW/palm_fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/palm_fruit.png -------------------------------------------------------------------------------- /images/BOTW/patricia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/patricia.png -------------------------------------------------------------------------------- /images/BOTW/phrenic_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/phrenic_bow.png -------------------------------------------------------------------------------- /images/BOTW/pink_heron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/pink_heron.png -------------------------------------------------------------------------------- /images/BOTW/pot_lid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/pot_lid.png -------------------------------------------------------------------------------- /images/BOTW/radiant_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/radiant_shield.png -------------------------------------------------------------------------------- /images/BOTW/rainbow_pigeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/rainbow_pigeon.png -------------------------------------------------------------------------------- /images/BOTW/rainbow_sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/rainbow_sparrow.png -------------------------------------------------------------------------------- /images/BOTW/rare_ore_deposit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/rare_ore_deposit.png -------------------------------------------------------------------------------- /images/BOTW/razorclaw_crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/razorclaw_crab.png -------------------------------------------------------------------------------- /images/BOTW/razorshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/razorshroom.png -------------------------------------------------------------------------------- /images/BOTW/red-tusked_boar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/red-tusked_boar.png -------------------------------------------------------------------------------- /images/BOTW/red_sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/red_sparrow.png -------------------------------------------------------------------------------- /images/BOTW/restless_cricket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/restless_cricket.png -------------------------------------------------------------------------------- /images/BOTW/rock_octorok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/rock_octorok.png -------------------------------------------------------------------------------- /images/BOTW/royal_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/royal_bow.png -------------------------------------------------------------------------------- /images/BOTW/royal_broadsword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/royal_broadsword.png -------------------------------------------------------------------------------- /images/BOTW/royal_claymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/royal_claymore.png -------------------------------------------------------------------------------- /images/BOTW/royal_guard's_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/royal_guard's_bow.png -------------------------------------------------------------------------------- /images/BOTW/royal_guard's_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/royal_guard's_spear.png -------------------------------------------------------------------------------- /images/BOTW/royal_guard's_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/royal_guard's_sword.png -------------------------------------------------------------------------------- /images/BOTW/royal_halberd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/royal_halberd.png -------------------------------------------------------------------------------- /images/BOTW/royal_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/royal_shield.png -------------------------------------------------------------------------------- /images/BOTW/rugged_rhino_beetle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/rugged_rhino_beetle.png -------------------------------------------------------------------------------- /images/BOTW/rushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/rushroom.png -------------------------------------------------------------------------------- /images/BOTW/rusty_broadsword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/rusty_broadsword.png -------------------------------------------------------------------------------- /images/BOTW/rusty_claymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/rusty_claymore.png -------------------------------------------------------------------------------- /images/BOTW/rusty_halberd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/rusty_halberd.png -------------------------------------------------------------------------------- /images/BOTW/rusty_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/rusty_shield.png -------------------------------------------------------------------------------- /images/BOTW/sand_seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/sand_seal.png -------------------------------------------------------------------------------- /images/BOTW/sand_sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/sand_sparrow.png -------------------------------------------------------------------------------- /images/BOTW/sanke_carp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/sanke_carp.png -------------------------------------------------------------------------------- /images/BOTW/savage_lynel_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/savage_lynel_bow.png -------------------------------------------------------------------------------- /images/BOTW/savage_lynel_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/savage_lynel_shield.png -------------------------------------------------------------------------------- /images/BOTW/savage_lynel_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/savage_lynel_spear.png -------------------------------------------------------------------------------- /images/BOTW/savage_lynel_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/savage_lynel_sword.png -------------------------------------------------------------------------------- /images/BOTW/seagull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/seagull.png -------------------------------------------------------------------------------- /images/BOTW/sentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/sentry.png -------------------------------------------------------------------------------- /images/BOTW/serpentine_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/serpentine_spear.png -------------------------------------------------------------------------------- /images/BOTW/shock_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/shock_arrow.png -------------------------------------------------------------------------------- /images/BOTW/silent_princess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/silent_princess.png -------------------------------------------------------------------------------- /images/BOTW/silent_shroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/silent_shroom.png -------------------------------------------------------------------------------- /images/BOTW/silver_bokoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/silver_bokoblin.png -------------------------------------------------------------------------------- /images/BOTW/silver_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/silver_bow.png -------------------------------------------------------------------------------- /images/BOTW/silver_lizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/silver_lizalfos.png -------------------------------------------------------------------------------- /images/BOTW/silver_longsword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/silver_longsword.png -------------------------------------------------------------------------------- /images/BOTW/silver_lynel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/silver_lynel.png -------------------------------------------------------------------------------- /images/BOTW/silver_moblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/silver_moblin.png -------------------------------------------------------------------------------- /images/BOTW/silver_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/silver_shield.png -------------------------------------------------------------------------------- /images/BOTW/silverscale_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/silverscale_spear.png -------------------------------------------------------------------------------- /images/BOTW/sizzlefin_trout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/sizzlefin_trout.png -------------------------------------------------------------------------------- /images/BOTW/sneaky_river_snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/sneaky_river_snail.png -------------------------------------------------------------------------------- /images/BOTW/snow_octorok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/snow_octorok.png -------------------------------------------------------------------------------- /images/BOTW/snowcoat_fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/snowcoat_fox.png -------------------------------------------------------------------------------- /images/BOTW/soldier's_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/soldier's_bow.png -------------------------------------------------------------------------------- /images/BOTW/soldier's_claymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/soldier's_claymore.png -------------------------------------------------------------------------------- /images/BOTW/soldier's_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/soldier's_shield.png -------------------------------------------------------------------------------- /images/BOTW/soldier's_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/soldier's_spear.png -------------------------------------------------------------------------------- /images/BOTW/soup_ladle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/soup_ladle.png -------------------------------------------------------------------------------- /images/BOTW/spicy_pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/spicy_pepper.png -------------------------------------------------------------------------------- /images/BOTW/spiked_boko_bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/spiked_boko_bat.png -------------------------------------------------------------------------------- /images/BOTW/spiked_boko_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/spiked_boko_bow.png -------------------------------------------------------------------------------- /images/BOTW/spiked_boko_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/spiked_boko_club.png -------------------------------------------------------------------------------- /images/BOTW/spiked_boko_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/spiked_boko_shield.png -------------------------------------------------------------------------------- /images/BOTW/spiked_boko_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/spiked_boko_spear.png -------------------------------------------------------------------------------- /images/BOTW/spiked_moblin_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/spiked_moblin_club.png -------------------------------------------------------------------------------- /images/BOTW/spiked_moblin_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/spiked_moblin_spear.png -------------------------------------------------------------------------------- /images/BOTW/stalhorse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/stalhorse.png -------------------------------------------------------------------------------- /images/BOTW/stalizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/stalizalfos.png -------------------------------------------------------------------------------- /images/BOTW/stalkoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/stalkoblin.png -------------------------------------------------------------------------------- /images/BOTW/stalmoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/stalmoblin.png -------------------------------------------------------------------------------- /images/BOTW/stalnox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/stalnox.png -------------------------------------------------------------------------------- /images/BOTW/stamella_shroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/stamella_shroom.png -------------------------------------------------------------------------------- /images/BOTW/staminoka_bass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/staminoka_bass.png -------------------------------------------------------------------------------- /images/BOTW/stealthfin_trout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/stealthfin_trout.png -------------------------------------------------------------------------------- /images/BOTW/steel_lizal_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/steel_lizal_bow.png -------------------------------------------------------------------------------- /images/BOTW/steel_lizal_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/steel_lizal_shield.png -------------------------------------------------------------------------------- /images/BOTW/stone_pebblit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/stone_pebblit.png -------------------------------------------------------------------------------- /images/BOTW/stone_smasher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/stone_smasher.png -------------------------------------------------------------------------------- /images/BOTW/stone_talus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/stone_talus.png -------------------------------------------------------------------------------- /images/BOTW/stone_talus_(rare).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/stone_talus_(rare).png -------------------------------------------------------------------------------- /images/BOTW/sunset_firefly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/sunset_firefly.png -------------------------------------------------------------------------------- /images/BOTW/sunshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/sunshroom.png -------------------------------------------------------------------------------- /images/BOTW/swallow_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/swallow_bow.png -------------------------------------------------------------------------------- /images/BOTW/swift_carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/swift_carrot.png -------------------------------------------------------------------------------- /images/BOTW/swift_violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/swift_violet.png -------------------------------------------------------------------------------- /images/BOTW/tabantha_moose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/tabantha_moose.png -------------------------------------------------------------------------------- /images/BOTW/throwing_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/throwing_spear.png -------------------------------------------------------------------------------- /images/BOTW/thunder_wizzrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/thunder_wizzrobe.png -------------------------------------------------------------------------------- /images/BOTW/thunderblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/thunderblade.png -------------------------------------------------------------------------------- /images/BOTW/thunderblight_ganon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/thunderblight_ganon.png -------------------------------------------------------------------------------- /images/BOTW/thunderspear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/thunderspear.png -------------------------------------------------------------------------------- /images/BOTW/thunderstorm_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/thunderstorm_rod.png -------------------------------------------------------------------------------- /images/BOTW/tireless_frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/tireless_frog.png -------------------------------------------------------------------------------- /images/BOTW/torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/torch.png -------------------------------------------------------------------------------- /images/BOTW/traveler's_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/traveler's_bow.png -------------------------------------------------------------------------------- /images/BOTW/traveler's_claymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/traveler's_claymore.png -------------------------------------------------------------------------------- /images/BOTW/traveler's_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/traveler's_shield.png -------------------------------------------------------------------------------- /images/BOTW/traveler's_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/traveler's_spear.png -------------------------------------------------------------------------------- /images/BOTW/traveler's_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/traveler's_sword.png -------------------------------------------------------------------------------- /images/BOTW/treasure_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/treasure_chest.png -------------------------------------------------------------------------------- /images/BOTW/treasure_octorok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/treasure_octorok.png -------------------------------------------------------------------------------- /images/BOTW/tree_branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/tree_branch.png -------------------------------------------------------------------------------- /images/BOTW/vicious_sickle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/vicious_sickle.png -------------------------------------------------------------------------------- /images/BOTW/voltfin_trout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/voltfin_trout.png -------------------------------------------------------------------------------- /images/BOTW/voltfruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/voltfruit.png -------------------------------------------------------------------------------- /images/BOTW/warm_darner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/warm_darner.png -------------------------------------------------------------------------------- /images/BOTW/warm_safflina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/warm_safflina.png -------------------------------------------------------------------------------- /images/BOTW/wasteland_coyote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/wasteland_coyote.png -------------------------------------------------------------------------------- /images/BOTW/water_buffalo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/water_buffalo.png -------------------------------------------------------------------------------- /images/BOTW/water_octorok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/water_octorok.png -------------------------------------------------------------------------------- /images/BOTW/waterblight_ganon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/waterblight_ganon.png -------------------------------------------------------------------------------- /images/BOTW/white-maned_lynel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/white-maned_lynel.png -------------------------------------------------------------------------------- /images/BOTW/white_goat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/white_goat.png -------------------------------------------------------------------------------- /images/BOTW/white_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/white_horse.png -------------------------------------------------------------------------------- /images/BOTW/white_pigeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/white_pigeon.png -------------------------------------------------------------------------------- /images/BOTW/wildberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/wildberry.png -------------------------------------------------------------------------------- /images/BOTW/windblight_ganon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/windblight_ganon.png -------------------------------------------------------------------------------- /images/BOTW/windcleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/windcleaver.png -------------------------------------------------------------------------------- /images/BOTW/wood_pigeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/wood_pigeon.png -------------------------------------------------------------------------------- /images/BOTW/woodcutter's_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/woodcutter's_axe.png -------------------------------------------------------------------------------- /images/BOTW/wooden_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/wooden_bow.png -------------------------------------------------------------------------------- /images/BOTW/wooden_mop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/wooden_mop.png -------------------------------------------------------------------------------- /images/BOTW/wooden_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/wooden_shield.png -------------------------------------------------------------------------------- /images/BOTW/woodland_boar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/woodland_boar.png -------------------------------------------------------------------------------- /images/BOTW/yiga_blademaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/yiga_blademaster.png -------------------------------------------------------------------------------- /images/BOTW/yiga_footsoldier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/yiga_footsoldier.png -------------------------------------------------------------------------------- /images/BOTW/zapshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/zapshroom.png -------------------------------------------------------------------------------- /images/BOTW/zora_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/zora_spear.png -------------------------------------------------------------------------------- /images/BOTW/zora_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/BOTW/zora_sword.png -------------------------------------------------------------------------------- /images/TOTK/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/.gitkeep -------------------------------------------------------------------------------- /images/TOTK/accented_pigeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/accented_pigeon.png -------------------------------------------------------------------------------- /images/TOTK/aerocuda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/aerocuda.png -------------------------------------------------------------------------------- /images/TOTK/aerocuda_eyeball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/aerocuda_eyeball.png -------------------------------------------------------------------------------- /images/TOTK/ancient_arowana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/ancient_arowana.png -------------------------------------------------------------------------------- /images/TOTK/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/apple.png -------------------------------------------------------------------------------- /images/TOTK/armoranth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/armoranth.png -------------------------------------------------------------------------------- /images/TOTK/armored_carp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/armored_carp.png -------------------------------------------------------------------------------- /images/TOTK/armored_porgy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/armored_porgy.png -------------------------------------------------------------------------------- /images/TOTK/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/arrow.png -------------------------------------------------------------------------------- /images/TOTK/battle_talus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/battle_talus.png -------------------------------------------------------------------------------- /images/TOTK/big_hearty_radish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/big_hearty_radish.png -------------------------------------------------------------------------------- /images/TOTK/big_hearty_truffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/big_hearty_truffle.png -------------------------------------------------------------------------------- /images/TOTK/biggoron's_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/biggoron's_sword.png -------------------------------------------------------------------------------- /images/TOTK/black_bokoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/black_bokoblin.png -------------------------------------------------------------------------------- /images/TOTK/black_bokoblin_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/black_bokoblin_horn.png -------------------------------------------------------------------------------- /images/TOTK/black_boss_bokoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/black_boss_bokoblin.png -------------------------------------------------------------------------------- /images/TOTK/black_hinox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/black_hinox.png -------------------------------------------------------------------------------- /images/TOTK/black_hinox_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/black_hinox_horn.png -------------------------------------------------------------------------------- /images/TOTK/black_horriblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/black_horriblin.png -------------------------------------------------------------------------------- /images/TOTK/black_lizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/black_lizalfos.png -------------------------------------------------------------------------------- /images/TOTK/black_lizalfos_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/black_lizalfos_horn.png -------------------------------------------------------------------------------- /images/TOTK/black_moblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/black_moblin.png -------------------------------------------------------------------------------- /images/TOTK/black_moblin_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/black_moblin_horn.png -------------------------------------------------------------------------------- /images/TOTK/bladed_rhino_beetle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/bladed_rhino_beetle.png -------------------------------------------------------------------------------- /images/TOTK/blizzrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blizzrobe.png -------------------------------------------------------------------------------- /images/TOTK/blue-maned_lynel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue-maned_lynel.png -------------------------------------------------------------------------------- /images/TOTK/blue-white_frox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue-white_frox.png -------------------------------------------------------------------------------- /images/TOTK/blue-winged_heron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue-winged_heron.png -------------------------------------------------------------------------------- /images/TOTK/blue_bokoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_bokoblin.png -------------------------------------------------------------------------------- /images/TOTK/blue_bokoblin_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_bokoblin_horn.png -------------------------------------------------------------------------------- /images/TOTK/blue_boss_bokoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_boss_bokoblin.png -------------------------------------------------------------------------------- /images/TOTK/blue_hinox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_hinox.png -------------------------------------------------------------------------------- /images/TOTK/blue_hinox_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_hinox_horn.png -------------------------------------------------------------------------------- /images/TOTK/blue_horriblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_horriblin.png -------------------------------------------------------------------------------- /images/TOTK/blue_horriblin_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_horriblin_horn.png -------------------------------------------------------------------------------- /images/TOTK/blue_lizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_lizalfos.png -------------------------------------------------------------------------------- /images/TOTK/blue_lizalfos_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_lizalfos_horn.png -------------------------------------------------------------------------------- /images/TOTK/blue_moblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_moblin.png -------------------------------------------------------------------------------- /images/TOTK/blue_moblin_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_moblin_horn.png -------------------------------------------------------------------------------- /images/TOTK/blue_nightshade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_nightshade.png -------------------------------------------------------------------------------- /images/TOTK/blue_sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blue_sparrow.png -------------------------------------------------------------------------------- /images/TOTK/blupee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/blupee.png -------------------------------------------------------------------------------- /images/TOTK/boat_oar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/boat_oar.png -------------------------------------------------------------------------------- /images/TOTK/boko_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/boko_bow.png -------------------------------------------------------------------------------- /images/TOTK/boko_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/boko_shield.png -------------------------------------------------------------------------------- /images/TOTK/bokoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/bokoblin.png -------------------------------------------------------------------------------- /images/TOTK/bokoblin_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/bokoblin_arm.png -------------------------------------------------------------------------------- /images/TOTK/bokoblin_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/bokoblin_horn.png -------------------------------------------------------------------------------- /images/TOTK/bomb_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/bomb_flower.png -------------------------------------------------------------------------------- /images/TOTK/boomerang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/boomerang.png -------------------------------------------------------------------------------- /images/TOTK/boomerang_(new).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/boomerang_(new).png -------------------------------------------------------------------------------- /images/TOTK/boss_bokoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/boss_bokoblin.png -------------------------------------------------------------------------------- /images/TOTK/boss_bokoblin_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/boss_bokoblin_horn.png -------------------------------------------------------------------------------- /images/TOTK/boulder_breaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/boulder_breaker.png -------------------------------------------------------------------------------- /images/TOTK/bright-chested_duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/bright-chested_duck.png -------------------------------------------------------------------------------- /images/TOTK/bright-eyed_crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/bright-eyed_crab.png -------------------------------------------------------------------------------- /images/TOTK/brightbloom_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/brightbloom_seed.png -------------------------------------------------------------------------------- /images/TOTK/brightcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/brightcap.png -------------------------------------------------------------------------------- /images/TOTK/bubbulfrog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/bubbulfrog.png -------------------------------------------------------------------------------- /images/TOTK/captain_construct_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/captain_construct_i.png -------------------------------------------------------------------------------- /images/TOTK/chillfin_trout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/chillfin_trout.png -------------------------------------------------------------------------------- /images/TOTK/chillshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/chillshroom.png -------------------------------------------------------------------------------- /images/TOTK/chuchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/chuchu.png -------------------------------------------------------------------------------- /images/TOTK/chuchu_jelly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/chuchu_jelly.png -------------------------------------------------------------------------------- /images/TOTK/cloud_seagull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/cloud_seagull.png -------------------------------------------------------------------------------- /images/TOTK/cobble_crusher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/cobble_crusher.png -------------------------------------------------------------------------------- /images/TOTK/cold-footed_wolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/cold-footed_wolf.png -------------------------------------------------------------------------------- /images/TOTK/cold_darner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/cold_darner.png -------------------------------------------------------------------------------- /images/TOTK/colgera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/colgera.png -------------------------------------------------------------------------------- /images/TOTK/common_sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/common_sparrow.png -------------------------------------------------------------------------------- /images/TOTK/construct_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/construct_bow.png -------------------------------------------------------------------------------- /images/TOTK/cool_safflina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/cool_safflina.png -------------------------------------------------------------------------------- /images/TOTK/courser_bee_honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/courser_bee_honey.png -------------------------------------------------------------------------------- /images/TOTK/cucco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/cucco.png -------------------------------------------------------------------------------- /images/TOTK/daybreaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/daybreaker.png -------------------------------------------------------------------------------- /images/TOTK/dazzlefruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/dazzlefruit.png -------------------------------------------------------------------------------- /images/TOTK/deep_firefly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/deep_firefly.png -------------------------------------------------------------------------------- /images/TOTK/demon_dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/demon_dragon.png -------------------------------------------------------------------------------- /images/TOTK/demon_king's_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/demon_king's_bow.png -------------------------------------------------------------------------------- /images/TOTK/dinraal's_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/dinraal's_horn.png -------------------------------------------------------------------------------- /images/TOTK/dinraal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/dinraal.png -------------------------------------------------------------------------------- /images/TOTK/dondon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/dondon.png -------------------------------------------------------------------------------- /images/TOTK/donkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/donkey.png -------------------------------------------------------------------------------- /images/TOTK/dragonbone_boko_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/dragonbone_boko_bow.png -------------------------------------------------------------------------------- /images/TOTK/duplex_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/duplex_bow.png -------------------------------------------------------------------------------- /images/TOTK/dusk_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/dusk_bow.png -------------------------------------------------------------------------------- /images/TOTK/dusk_claymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/dusk_claymore.png -------------------------------------------------------------------------------- /images/TOTK/eightfold_blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/eightfold_blade.png -------------------------------------------------------------------------------- /images/TOTK/eightfold_longblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/eightfold_longblade.png -------------------------------------------------------------------------------- /images/TOTK/eldin_ostrich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/eldin_ostrich.png -------------------------------------------------------------------------------- /images/TOTK/electric_chuchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/electric_chuchu.png -------------------------------------------------------------------------------- /images/TOTK/electric_darner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/electric_darner.png -------------------------------------------------------------------------------- /images/TOTK/electric_keese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/electric_keese.png -------------------------------------------------------------------------------- /images/TOTK/electric_lizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/electric_lizalfos.png -------------------------------------------------------------------------------- /images/TOTK/electric_safflina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/electric_safflina.png -------------------------------------------------------------------------------- /images/TOTK/electric_wizzrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/electric_wizzrobe.png -------------------------------------------------------------------------------- /images/TOTK/emblazoned_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/emblazoned_shield.png -------------------------------------------------------------------------------- /images/TOTK/endura_carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/endura_carrot.png -------------------------------------------------------------------------------- /images/TOTK/endura_shroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/endura_shroom.png -------------------------------------------------------------------------------- /images/TOTK/evermean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/evermean.png -------------------------------------------------------------------------------- /images/TOTK/fairy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fairy.png -------------------------------------------------------------------------------- /images/TOTK/falcon_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/falcon_bow.png -------------------------------------------------------------------------------- /images/TOTK/farmer's_pitchfork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/farmer's_pitchfork.png -------------------------------------------------------------------------------- /images/TOTK/farming_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/farming_hoe.png -------------------------------------------------------------------------------- /images/TOTK/farosh's_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/farosh's_horn.png -------------------------------------------------------------------------------- /images/TOTK/farosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/farosh.png -------------------------------------------------------------------------------- /images/TOTK/feathered_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/feathered_edge.png -------------------------------------------------------------------------------- /images/TOTK/feathered_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/feathered_spear.png -------------------------------------------------------------------------------- /images/TOTK/fierce_deity_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fierce_deity_sword.png -------------------------------------------------------------------------------- /images/TOTK/fire_chuchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fire_chuchu.png -------------------------------------------------------------------------------- /images/TOTK/fire_fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fire_fruit.png -------------------------------------------------------------------------------- /images/TOTK/fire_keese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fire_keese.png -------------------------------------------------------------------------------- /images/TOTK/fire_keese_eyeball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fire_keese_eyeball.png -------------------------------------------------------------------------------- /images/TOTK/fire_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fire_like.png -------------------------------------------------------------------------------- /images/TOTK/fire_like_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fire_like_stone.png -------------------------------------------------------------------------------- /images/TOTK/fire_wizzrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fire_wizzrobe.png -------------------------------------------------------------------------------- /images/TOTK/fireproof_lizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fireproof_lizard.png -------------------------------------------------------------------------------- /images/TOTK/fisherman's_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fisherman's_shield.png -------------------------------------------------------------------------------- /images/TOTK/fishing_harpoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fishing_harpoon.png -------------------------------------------------------------------------------- /images/TOTK/flame_gleeok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/flame_gleeok.png -------------------------------------------------------------------------------- /images/TOTK/fleet-lotus_seeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fleet-lotus_seeds.png -------------------------------------------------------------------------------- /images/TOTK/flux_construct_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/flux_construct_i.png -------------------------------------------------------------------------------- /images/TOTK/flux_construct_ii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/flux_construct_ii.png -------------------------------------------------------------------------------- /images/TOTK/flux_construct_iii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/flux_construct_iii.png -------------------------------------------------------------------------------- /images/TOTK/forest_octorok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/forest_octorok.png -------------------------------------------------------------------------------- /images/TOTK/forest_ostrich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/forest_ostrich.png -------------------------------------------------------------------------------- /images/TOTK/fortified_pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/fortified_pumpkin.png -------------------------------------------------------------------------------- /images/TOTK/frost_gleeok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/frost_gleeok.png -------------------------------------------------------------------------------- /images/TOTK/frost_pebblit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/frost_pebblit.png -------------------------------------------------------------------------------- /images/TOTK/frost_talus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/frost_talus.png -------------------------------------------------------------------------------- /images/TOTK/frox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/frox.png -------------------------------------------------------------------------------- /images/TOTK/frox_fang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/frox_fang.png -------------------------------------------------------------------------------- /images/TOTK/gerudo_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gerudo_bow.png -------------------------------------------------------------------------------- /images/TOTK/gerudo_claymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gerudo_claymore.png -------------------------------------------------------------------------------- /images/TOTK/gerudo_scimitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gerudo_scimitar.png -------------------------------------------------------------------------------- /images/TOTK/gerudo_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gerudo_shield.png -------------------------------------------------------------------------------- /images/TOTK/gerudo_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gerudo_spear.png -------------------------------------------------------------------------------- /images/TOTK/gerudo_spear_(new).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gerudo_spear_(new).png -------------------------------------------------------------------------------- /images/TOTK/giant_boomerang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/giant_boomerang.png -------------------------------------------------------------------------------- /images/TOTK/giant_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/giant_horse.png -------------------------------------------------------------------------------- /images/TOTK/gibdo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gibdo.png -------------------------------------------------------------------------------- /images/TOTK/gibdo_bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gibdo_bone.png -------------------------------------------------------------------------------- /images/TOTK/gleeok_flame_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gleeok_flame_horn.png -------------------------------------------------------------------------------- /images/TOTK/gleeok_frost_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gleeok_frost_horn.png -------------------------------------------------------------------------------- /images/TOTK/gleeok_thunder_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gleeok_thunder_horn.png -------------------------------------------------------------------------------- /images/TOTK/gloom_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gloom_club.png -------------------------------------------------------------------------------- /images/TOTK/gloom_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gloom_spear.png -------------------------------------------------------------------------------- /images/TOTK/gloom_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gloom_sword.png -------------------------------------------------------------------------------- /images/TOTK/glowing_cave_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/glowing_cave_fish.png -------------------------------------------------------------------------------- /images/TOTK/gnarled_long_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/gnarled_long_stick.png -------------------------------------------------------------------------------- /images/TOTK/golden_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/golden_apple.png -------------------------------------------------------------------------------- /images/TOTK/golden_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/golden_horse.png -------------------------------------------------------------------------------- /images/TOTK/golden_sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/golden_sparrow.png -------------------------------------------------------------------------------- /images/TOTK/grassland_fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/grassland_fox.png -------------------------------------------------------------------------------- /images/TOTK/great_eagle_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/great_eagle_bow.png -------------------------------------------------------------------------------- /images/TOTK/grizzlemaw_bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/grizzlemaw_bear.png -------------------------------------------------------------------------------- /images/TOTK/hateno_cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hateno_cow.png -------------------------------------------------------------------------------- /images/TOTK/hearty_bass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hearty_bass.png -------------------------------------------------------------------------------- /images/TOTK/hearty_lizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hearty_lizard.png -------------------------------------------------------------------------------- /images/TOTK/hearty_radish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hearty_radish.png -------------------------------------------------------------------------------- /images/TOTK/hearty_salmon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hearty_salmon.png -------------------------------------------------------------------------------- /images/TOTK/hearty_truffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hearty_truffle.png -------------------------------------------------------------------------------- /images/TOTK/highland_sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/highland_sheep.png -------------------------------------------------------------------------------- /images/TOTK/hightail_lizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hightail_lizard.png -------------------------------------------------------------------------------- /images/TOTK/hinox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hinox.png -------------------------------------------------------------------------------- /images/TOTK/hinox_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hinox_horn.png -------------------------------------------------------------------------------- /images/TOTK/honeyvore_bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/honeyvore_bear.png -------------------------------------------------------------------------------- /images/TOTK/horriblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/horriblin.png -------------------------------------------------------------------------------- /images/TOTK/horriblin_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/horriblin_horn.png -------------------------------------------------------------------------------- /images/TOTK/horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/horse.png -------------------------------------------------------------------------------- /images/TOTK/hot-footed_frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hot-footed_frog.png -------------------------------------------------------------------------------- /images/TOTK/hotfeather_pigeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hotfeather_pigeon.png -------------------------------------------------------------------------------- /images/TOTK/hunter's_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hunter's_shield.png -------------------------------------------------------------------------------- /images/TOTK/hydromelon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hydromelon.png -------------------------------------------------------------------------------- /images/TOTK/hylian_pine_cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hylian_pine_cone.png -------------------------------------------------------------------------------- /images/TOTK/hylian_retriever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hylian_retriever.png -------------------------------------------------------------------------------- /images/TOTK/hylian_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hylian_shield.png -------------------------------------------------------------------------------- /images/TOTK/hylian_shroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hylian_shroom.png -------------------------------------------------------------------------------- /images/TOTK/hylian_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hylian_tomato.png -------------------------------------------------------------------------------- /images/TOTK/hyrule_bass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hyrule_bass.png -------------------------------------------------------------------------------- /images/TOTK/hyrule_herb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/hyrule_herb.png -------------------------------------------------------------------------------- /images/TOTK/ice_chuchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/ice_chuchu.png -------------------------------------------------------------------------------- /images/TOTK/ice_fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/ice_fruit.png -------------------------------------------------------------------------------- /images/TOTK/ice_keese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/ice_keese.png -------------------------------------------------------------------------------- /images/TOTK/ice_keese_eyeball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/ice_keese_eyeball.png -------------------------------------------------------------------------------- /images/TOTK/ice_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/ice_like.png -------------------------------------------------------------------------------- /images/TOTK/ice_like_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/ice_like_stone.png -------------------------------------------------------------------------------- /images/TOTK/ice_wizzrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/ice_wizzrobe.png -------------------------------------------------------------------------------- /images/TOTK/igneo_pebblit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/igneo_pebblit.png -------------------------------------------------------------------------------- /images/TOTK/igneo_talus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/igneo_talus.png -------------------------------------------------------------------------------- /images/TOTK/ironshell_crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/ironshell_crab.png -------------------------------------------------------------------------------- /images/TOTK/ironshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/ironshroom.png -------------------------------------------------------------------------------- /images/TOTK/islander_hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/islander_hawk.png -------------------------------------------------------------------------------- /images/TOTK/keese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/keese.png -------------------------------------------------------------------------------- /images/TOTK/keese_eyeball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/keese_eyeball.png -------------------------------------------------------------------------------- /images/TOTK/king_gleeok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/king_gleeok.png -------------------------------------------------------------------------------- /images/TOTK/kite_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/kite_shield.png -------------------------------------------------------------------------------- /images/TOTK/knight's_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/knight's_bow.png -------------------------------------------------------------------------------- /images/TOTK/knight's_claymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/knight's_claymore.png -------------------------------------------------------------------------------- /images/TOTK/knight's_halberd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/knight's_halberd.png -------------------------------------------------------------------------------- /images/TOTK/knight's_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/knight's_shield.png -------------------------------------------------------------------------------- /images/TOTK/korok_frond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/korok_frond.png -------------------------------------------------------------------------------- /images/TOTK/light_dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/light_dragon.png -------------------------------------------------------------------------------- /images/TOTK/like_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/like_like.png -------------------------------------------------------------------------------- /images/TOTK/like_like_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/like_like_stone.png -------------------------------------------------------------------------------- /images/TOTK/little_frox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/little_frox.png -------------------------------------------------------------------------------- /images/TOTK/lizal_boomerang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/lizal_boomerang.png -------------------------------------------------------------------------------- /images/TOTK/lizal_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/lizal_bow.png -------------------------------------------------------------------------------- /images/TOTK/lizal_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/lizal_shield.png -------------------------------------------------------------------------------- /images/TOTK/lizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/lizalfos.png -------------------------------------------------------------------------------- /images/TOTK/lizalfos_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/lizalfos_arm.png -------------------------------------------------------------------------------- /images/TOTK/lizalfos_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/lizalfos_horn.png -------------------------------------------------------------------------------- /images/TOTK/long_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/long_stick.png -------------------------------------------------------------------------------- /images/TOTK/lynel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/lynel.png -------------------------------------------------------------------------------- /images/TOTK/lynel_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/lynel_bow.png -------------------------------------------------------------------------------- /images/TOTK/lynel_mace_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/lynel_mace_horn.png -------------------------------------------------------------------------------- /images/TOTK/lynel_saber_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/lynel_saber_horn.png -------------------------------------------------------------------------------- /images/TOTK/lynel_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/lynel_shield.png -------------------------------------------------------------------------------- /images/TOTK/magic_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/magic_rod.png -------------------------------------------------------------------------------- /images/TOTK/magic_scepter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/magic_scepter.png -------------------------------------------------------------------------------- /images/TOTK/magic_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/magic_staff.png -------------------------------------------------------------------------------- /images/TOTK/maraudo_wolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/maraudo_wolf.png -------------------------------------------------------------------------------- /images/TOTK/marbled_gohma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/marbled_gohma.png -------------------------------------------------------------------------------- /images/TOTK/master_kohga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/master_kohga.png -------------------------------------------------------------------------------- /images/TOTK/master_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/master_sword.png -------------------------------------------------------------------------------- /images/TOTK/meteo_wizzrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/meteo_wizzrobe.png -------------------------------------------------------------------------------- /images/TOTK/mighty_bananas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/mighty_bananas.png -------------------------------------------------------------------------------- /images/TOTK/mighty_carp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/mighty_carp.png -------------------------------------------------------------------------------- /images/TOTK/mighty_lynel_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/mighty_lynel_bow.png -------------------------------------------------------------------------------- /images/TOTK/mighty_porgy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/mighty_porgy.png -------------------------------------------------------------------------------- /images/TOTK/mighty_thistle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/mighty_thistle.png -------------------------------------------------------------------------------- /images/TOTK/moblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/moblin.png -------------------------------------------------------------------------------- /images/TOTK/moblin_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/moblin_arm.png -------------------------------------------------------------------------------- /images/TOTK/moblin_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/moblin_horn.png -------------------------------------------------------------------------------- /images/TOTK/molduga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/molduga.png -------------------------------------------------------------------------------- /images/TOTK/molduga_jaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/molduga_jaw.png -------------------------------------------------------------------------------- /images/TOTK/moragia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/moragia.png -------------------------------------------------------------------------------- /images/TOTK/moth_gibdo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/moth_gibdo.png -------------------------------------------------------------------------------- /images/TOTK/mountain_buck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/mountain_buck.png -------------------------------------------------------------------------------- /images/TOTK/mountain_crow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/mountain_crow.png -------------------------------------------------------------------------------- /images/TOTK/mountain_doe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/mountain_doe.png -------------------------------------------------------------------------------- /images/TOTK/mountain_goat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/mountain_goat.png -------------------------------------------------------------------------------- /images/TOTK/mucktorok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/mucktorok.png -------------------------------------------------------------------------------- /images/TOTK/muddle_bud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/muddle_bud.png -------------------------------------------------------------------------------- /images/TOTK/naydra's_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/naydra's_horn.png -------------------------------------------------------------------------------- /images/TOTK/naydra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/naydra.png -------------------------------------------------------------------------------- /images/TOTK/obsidian_frox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/obsidian_frox.png -------------------------------------------------------------------------------- /images/TOTK/old_wooden_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/old_wooden_bow.png -------------------------------------------------------------------------------- /images/TOTK/old_wooden_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/old_wooden_shield.png -------------------------------------------------------------------------------- /images/TOTK/ore_deposit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/ore_deposit.png -------------------------------------------------------------------------------- /images/TOTK/palm_fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/palm_fruit.png -------------------------------------------------------------------------------- /images/TOTK/patricia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/patricia.png -------------------------------------------------------------------------------- /images/TOTK/phantom_ganon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/phantom_ganon.png -------------------------------------------------------------------------------- /images/TOTK/phrenic_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/phrenic_bow.png -------------------------------------------------------------------------------- /images/TOTK/pink_heron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/pink_heron.png -------------------------------------------------------------------------------- /images/TOTK/pot_lid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/pot_lid.png -------------------------------------------------------------------------------- /images/TOTK/puffshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/puffshroom.png -------------------------------------------------------------------------------- /images/TOTK/queen_gibdo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/queen_gibdo.png -------------------------------------------------------------------------------- /images/TOTK/radiant_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/radiant_shield.png -------------------------------------------------------------------------------- /images/TOTK/rainbow_pigeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/rainbow_pigeon.png -------------------------------------------------------------------------------- /images/TOTK/rainbow_sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/rainbow_sparrow.png -------------------------------------------------------------------------------- /images/TOTK/rare_ore_deposit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/rare_ore_deposit.png -------------------------------------------------------------------------------- /images/TOTK/razorclaw_crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/razorclaw_crab.png -------------------------------------------------------------------------------- /images/TOTK/razorshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/razorshroom.png -------------------------------------------------------------------------------- /images/TOTK/red-tusked_boar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/red-tusked_boar.png -------------------------------------------------------------------------------- /images/TOTK/red_chuchu_jelly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/red_chuchu_jelly.png -------------------------------------------------------------------------------- /images/TOTK/red_sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/red_sparrow.png -------------------------------------------------------------------------------- /images/TOTK/restless_cricket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/restless_cricket.png -------------------------------------------------------------------------------- /images/TOTK/rock_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/rock_like.png -------------------------------------------------------------------------------- /images/TOTK/rock_octorok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/rock_octorok.png -------------------------------------------------------------------------------- /images/TOTK/royal_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/royal_bow.png -------------------------------------------------------------------------------- /images/TOTK/royal_broadsword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/royal_broadsword.png -------------------------------------------------------------------------------- /images/TOTK/royal_claymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/royal_claymore.png -------------------------------------------------------------------------------- /images/TOTK/royal_guard's_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/royal_guard's_bow.png -------------------------------------------------------------------------------- /images/TOTK/royal_halberd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/royal_halberd.png -------------------------------------------------------------------------------- /images/TOTK/royal_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/royal_shield.png -------------------------------------------------------------------------------- /images/TOTK/rushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/rushroom.png -------------------------------------------------------------------------------- /images/TOTK/rusty_broadsword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/rusty_broadsword.png -------------------------------------------------------------------------------- /images/TOTK/rusty_claymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/rusty_claymore.png -------------------------------------------------------------------------------- /images/TOTK/rusty_halberd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/rusty_halberd.png -------------------------------------------------------------------------------- /images/TOTK/rusty_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/rusty_shield.png -------------------------------------------------------------------------------- /images/TOTK/sand_seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sand_seal.png -------------------------------------------------------------------------------- /images/TOTK/sand_sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sand_sparrow.png -------------------------------------------------------------------------------- /images/TOTK/sanke_carp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sanke_carp.png -------------------------------------------------------------------------------- /images/TOTK/savage_lynel_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/savage_lynel_bow.png -------------------------------------------------------------------------------- /images/TOTK/sea-breeze_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sea-breeze_shield.png -------------------------------------------------------------------------------- /images/TOTK/seagull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/seagull.png -------------------------------------------------------------------------------- /images/TOTK/seized_construct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/seized_construct.png -------------------------------------------------------------------------------- /images/TOTK/shock_fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/shock_fruit.png -------------------------------------------------------------------------------- /images/TOTK/shock_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/shock_like.png -------------------------------------------------------------------------------- /images/TOTK/shock_like_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/shock_like_stone.png -------------------------------------------------------------------------------- /images/TOTK/silent_princess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/silent_princess.png -------------------------------------------------------------------------------- /images/TOTK/silent_shroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/silent_shroom.png -------------------------------------------------------------------------------- /images/TOTK/silver_bokoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/silver_bokoblin.png -------------------------------------------------------------------------------- /images/TOTK/silver_horriblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/silver_horriblin.png -------------------------------------------------------------------------------- /images/TOTK/silver_lizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/silver_lizalfos.png -------------------------------------------------------------------------------- /images/TOTK/silver_lynel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/silver_lynel.png -------------------------------------------------------------------------------- /images/TOTK/silver_moblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/silver_moblin.png -------------------------------------------------------------------------------- /images/TOTK/sizzlefin_trout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sizzlefin_trout.png -------------------------------------------------------------------------------- /images/TOTK/skyshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/skyshroom.png -------------------------------------------------------------------------------- /images/TOTK/sludge_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sludge_like.png -------------------------------------------------------------------------------- /images/TOTK/snow_octorok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/snow_octorok.png -------------------------------------------------------------------------------- /images/TOTK/snowcoat_fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/snowcoat_fox.png -------------------------------------------------------------------------------- /images/TOTK/soldier's_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/soldier's_bow.png -------------------------------------------------------------------------------- /images/TOTK/soldier's_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/soldier's_shield.png -------------------------------------------------------------------------------- /images/TOTK/soldier's_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/soldier's_spear.png -------------------------------------------------------------------------------- /images/TOTK/soup_ladle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/soup_ladle.png -------------------------------------------------------------------------------- /images/TOTK/spicy_pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/spicy_pepper.png -------------------------------------------------------------------------------- /images/TOTK/spiked_boko_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/spiked_boko_bow.png -------------------------------------------------------------------------------- /images/TOTK/splash_fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/splash_fruit.png -------------------------------------------------------------------------------- /images/TOTK/stalhorse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/stalhorse.png -------------------------------------------------------------------------------- /images/TOTK/stalizalfos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/stalizalfos.png -------------------------------------------------------------------------------- /images/TOTK/stalkoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/stalkoblin.png -------------------------------------------------------------------------------- /images/TOTK/stalmoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/stalmoblin.png -------------------------------------------------------------------------------- /images/TOTK/stalnox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/stalnox.png -------------------------------------------------------------------------------- /images/TOTK/stalnox_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/stalnox_horn.png -------------------------------------------------------------------------------- /images/TOTK/stambulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/stambulb.png -------------------------------------------------------------------------------- /images/TOTK/stamella_shroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/stamella_shroom.png -------------------------------------------------------------------------------- /images/TOTK/staminoka_bass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/staminoka_bass.png -------------------------------------------------------------------------------- /images/TOTK/stealthfin_trout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/stealthfin_trout.png -------------------------------------------------------------------------------- /images/TOTK/steel_lizal_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/steel_lizal_bow.png -------------------------------------------------------------------------------- /images/TOTK/sticky_frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sticky_frog.png -------------------------------------------------------------------------------- /images/TOTK/sticky_lizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sticky_lizard.png -------------------------------------------------------------------------------- /images/TOTK/stone_pebblit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/stone_pebblit.png -------------------------------------------------------------------------------- /images/TOTK/stone_talus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/stone_talus.png -------------------------------------------------------------------------------- /images/TOTK/sturdy_long_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sturdy_long_stick.png -------------------------------------------------------------------------------- /images/TOTK/sun_pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sun_pumpkin.png -------------------------------------------------------------------------------- /images/TOTK/sundelion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sundelion.png -------------------------------------------------------------------------------- /images/TOTK/sunset_firefly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sunset_firefly.png -------------------------------------------------------------------------------- /images/TOTK/sunshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sunshroom.png -------------------------------------------------------------------------------- /images/TOTK/swallow_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/swallow_bow.png -------------------------------------------------------------------------------- /images/TOTK/swift_carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/swift_carrot.png -------------------------------------------------------------------------------- /images/TOTK/swift_violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/swift_violet.png -------------------------------------------------------------------------------- /images/TOTK/sword_of_the_hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/sword_of_the_hero.png -------------------------------------------------------------------------------- /images/TOTK/tabantha_moose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/tabantha_moose.png -------------------------------------------------------------------------------- /images/TOTK/thick_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/thick_stick.png -------------------------------------------------------------------------------- /images/TOTK/throwing_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/throwing_spear.png -------------------------------------------------------------------------------- /images/TOTK/thunder_gleeok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/thunder_gleeok.png -------------------------------------------------------------------------------- /images/TOTK/thunder_wizzrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/thunder_wizzrobe.png -------------------------------------------------------------------------------- /images/TOTK/tireless_frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/tireless_frog.png -------------------------------------------------------------------------------- /images/TOTK/torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/torch.png -------------------------------------------------------------------------------- /images/TOTK/traveler's_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/traveler's_bow.png -------------------------------------------------------------------------------- /images/TOTK/traveler's_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/traveler's_shield.png -------------------------------------------------------------------------------- /images/TOTK/traveler's_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/traveler's_spear.png -------------------------------------------------------------------------------- /images/TOTK/traveler's_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/traveler's_sword.png -------------------------------------------------------------------------------- /images/TOTK/treasure_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/treasure_chest.png -------------------------------------------------------------------------------- /images/TOTK/treasure_octorok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/treasure_octorok.png -------------------------------------------------------------------------------- /images/TOTK/tree_branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/tree_branch.png -------------------------------------------------------------------------------- /images/TOTK/voltfin_trout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/voltfin_trout.png -------------------------------------------------------------------------------- /images/TOTK/voltfruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/voltfruit.png -------------------------------------------------------------------------------- /images/TOTK/warm_darner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/warm_darner.png -------------------------------------------------------------------------------- /images/TOTK/warm_safflina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/warm_safflina.png -------------------------------------------------------------------------------- /images/TOTK/wasteland_coyote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/wasteland_coyote.png -------------------------------------------------------------------------------- /images/TOTK/water_buffalo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/water_buffalo.png -------------------------------------------------------------------------------- /images/TOTK/water_octorok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/water_octorok.png -------------------------------------------------------------------------------- /images/TOTK/well.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/well.png -------------------------------------------------------------------------------- /images/TOTK/white-maned_lynel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/white-maned_lynel.png -------------------------------------------------------------------------------- /images/TOTK/white_goat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/white_goat.png -------------------------------------------------------------------------------- /images/TOTK/white_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/white_horse.png -------------------------------------------------------------------------------- /images/TOTK/white_pigeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/white_pigeon.png -------------------------------------------------------------------------------- /images/TOTK/wildberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/wildberry.png -------------------------------------------------------------------------------- /images/TOTK/wood_pigeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/wood_pigeon.png -------------------------------------------------------------------------------- /images/TOTK/wooden_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/wooden_bow.png -------------------------------------------------------------------------------- /images/TOTK/wooden_mop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/wooden_mop.png -------------------------------------------------------------------------------- /images/TOTK/wooden_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/wooden_shield.png -------------------------------------------------------------------------------- /images/TOTK/wooden_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/wooden_stick.png -------------------------------------------------------------------------------- /images/TOTK/woodland_boar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/woodland_boar.png -------------------------------------------------------------------------------- /images/TOTK/yiga_blademaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/yiga_blademaster.png -------------------------------------------------------------------------------- /images/TOTK/yiga_footsoldier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/yiga_footsoldier.png -------------------------------------------------------------------------------- /images/TOTK/zapshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zapshroom.png -------------------------------------------------------------------------------- /images/TOTK/zonaite_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zonaite_bow.png -------------------------------------------------------------------------------- /images/TOTK/zonaite_deposit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zonaite_deposit.png -------------------------------------------------------------------------------- /images/TOTK/zonaite_longsword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zonaite_longsword.png -------------------------------------------------------------------------------- /images/TOTK/zonaite_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zonaite_shield.png -------------------------------------------------------------------------------- /images/TOTK/zonaite_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zonaite_spear.png -------------------------------------------------------------------------------- /images/TOTK/zonaite_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zonaite_sword.png -------------------------------------------------------------------------------- /images/TOTK/zora_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zora_bow.png -------------------------------------------------------------------------------- /images/TOTK/zora_longsword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zora_longsword.png -------------------------------------------------------------------------------- /images/TOTK/zora_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zora_shield.png -------------------------------------------------------------------------------- /images/TOTK/zora_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zora_spear.png -------------------------------------------------------------------------------- /images/TOTK/zora_spear_(new).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zora_spear_(new).png -------------------------------------------------------------------------------- /images/TOTK/zora_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zora_sword.png -------------------------------------------------------------------------------- /images/TOTK/zora_sword_(new).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadhagod/Hyrule-Compendium-API/88dc1c8cd795eb9edb7ab7f905a032cbaa031c43/images/TOTK/zora_sword_(new).png -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | git clone https://github.com/gadhagod/Hyrule-Compendium-API -b v2-src v2 3 | gunicorn server:app $1 -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.11.9 -------------------------------------------------------------------------------- /tests/.mocharc.json: -------------------------------------------------------------------------------- 1 | { 2 | "timeout": 20000, 3 | "require": "ts-node/register", 4 | "file": ["test/v3/index.ts", "test/v2.ts"] 5 | } 6 | --------------------------------------------------------------------------------