All Projects → gadhagod → Hyrule-Compendium-API

gadhagod / Hyrule-Compendium-API

Licence: MIT License
An API serving data on all creatures, monsters, materials, equipment, and treasure in The Legend of Zelda: Breath of the Wild.

Programming Languages

typescript
32286 projects
python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to Hyrule-Compendium-API

botw-editor
The Legend of Zelda: Breath of the Wild - Editor
Stars: ✭ 27 (-67.07%)
Mutual labels:  zelda, botw
botw-modding
The Legend of Zelda: Breath of the Wild - Modding Documentation and Tools
Stars: ✭ 51 (-37.8%)
Mutual labels:  zelda, botw
RingfitAdventure-BotW-Mod
Using a Ring Fit Adventure mod for The Legend of Zelda: Breath of the Wild. This allows the user to control the game with exercises.
Stars: ✭ 66 (-19.51%)
Mutual labels:  zelda, breath-of-the-wild
botw-unexplored
Easily view the unexplored korok seeds and locations in your BotW savefile on your Switch
Stars: ✭ 79 (-3.66%)
Mutual labels:  botw, breath-of-the-wild
ZeldaOracle
A Zelda game engine based off of Oracle of Ages and Seasons.
Stars: ✭ 20 (-75.61%)
Mutual labels:  zelda
zelda-battery
A Legend of Zelda inspired health-bar battery meter for the CLI and GUI
Stars: ✭ 22 (-73.17%)
Mutual labels:  zelda
zeldaPlay
A Single Page Application to help zeldaPlay players to track their characters and progress
Stars: ✭ 95 (+15.85%)
Mutual labels:  zelda
sounds-of-github
This is a Chrome extension to play sound effects whenever you leave a reaction on GitHub.
Stars: ✭ 72 (-12.2%)
Mutual labels:  zelda
react-sheikah-ui
React component library based on The Legend of Zelda: Breath of the Wild game
Stars: ✭ 45 (-45.12%)
Mutual labels:  zelda
legend-of-z
A Zelda-esque 2D Action RPG game built by three Oregon State University students in 10 weeks from the ground up.
Stars: ✭ 50 (-39.02%)
Mutual labels:  zelda
Randomizer
The official Twilight Princess Randomizer 1.0+ Code
Stars: ✭ 26 (-68.29%)
Mutual labels:  zelda
minishmaker
Level editing suite for The Legend of Zelda: The Minish Cap
Stars: ✭ 58 (-29.27%)
Mutual labels:  zelda
HWL-SaveEditor
An Save-Editor for the game Hyrule Warriors Legends (Nintendo 3DS)
Stars: ✭ 18 (-78.05%)
Mutual labels:  zelda
BotW-SBFRES-to-FBX
⚔ A repo which employs a number of useful libraries I found across the net along with some custom-written Python and MAXScript to facilitate batch export of Nintendo SBFRES compressed files to FBX files (for use in Unity, for instance). DISCLAIMER: I do not condone the unauthorized replication of files provided by employing this script!
Stars: ✭ 61 (-25.61%)
Mutual labels:  botw
oracles-disasm
Disassembly of Oracle of Ages and Seasons
Stars: ✭ 125 (+52.44%)
Mutual labels:  zelda
OoT-Interactive-Map
Interactive Map for the world of Zelda: Ocarina of Time
Stars: ✭ 22 (-73.17%)
Mutual labels:  zelda
objmap
Breath of the Wild object map
Stars: ✭ 61 (-25.61%)
Mutual labels:  botw
byml-v2
Nintendo BYML or BYAML parser, writer and converter. Fully supports Breath of the Wild and Super Mario Odyssey files.
Stars: ✭ 23 (-71.95%)
Mutual labels:  botw

Hyrule Compendium API

An API serving data on all creatures, monsters, materials, equipment, and treasure in The Legend of Zelda: Breath of the Wild.
By Aarav Borthakur


Concept

The Hyrule compendium is an encyclopedia of all in-game interactive items. With this brilliant API, you can access this data from code and embed it into your own application. See the compendium directory of this repository to see all entries in the compendium. 385 entries and 5 categories of entries are in the compendium.

You can see a specific item, all items in a category, or all data in our database. Here is an example request and response, retrieving data on the silver lynel:

$ curl https://botw-compendium.herokuapp.com/api/v2/entry/white-maned_lynel
{
    "data": {
        "name": "white-maned lynel",
        "id": 123,
        "category": "monsters",
        "description": "These fearsome monsters have lived in Hyrule since ancient times. Their ability to breathe fire makes White-Maned Lynels among the toughest of the species; each one of their attacks is an invitation to the grave. There are so few eyewitness accounts of this breed because a White-Maned Lynel is not one to let even simple passersby escape with their lives.",
        "common_locations":[
            "Hyrule Field",
            "Hebra Mountains"
        ]
        "drops": [
            "lynel horn",
            "lynel hoof",
            "lynel guts"
        ],
        "image": "https://botw-compendium.herokuapp.com/api/v2/entry/white-maned_lynel/image"
    }
}

To get started, check out the documentation.

Support and Suggestions

If you come across a malfunction or have any suggestions open an issue or a pull request.

Running locally

Instructions for running locally can be found here.

Status

Author

Made with awesomeness by @gadhagod.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].