Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

An npm module written in Typescript that can find quests for Monster Hunter: Rise via specified parameters

NotificationsYou must be signed in to change notification settings

Slynchy/HuntAMonster

Repository files navigation

An npm module written in Typescript that can find quests for Monster Hunter: Rise matching specified parameters (e.g. possible monsters, items/materials, HR, etc.)

Install

To install to your project:

npm install --save-dev huntamonster

To develop locally:

  • Clone this repository
  • Runnpm install in the root directory of this repository
  • Runnpm run build to build library/module
  • Runnpm test to run lint and unit tests

Usage

import {     HuntAMonster} from "huntamonster";// You can access the raw data to fetch things like item names <-> idsHuntAMonster.getItemData();HuntAMonster.getMonsterData();HuntAMonster.getQuestData();// Once you know the IDs of what you need to find, you can plug them// into the search property object like so:HuntAMonster.findQuests({    // Mizutsune    monsters: [{id: "082_00"}],    // Goss Harag    excludeMonsters: [{id: "097_00"}],    // "Ruckus in the Ruins"    excludeQuests: ["010715"],    // Bubblefoam+    includeMaterials: ["normal_0308"],    minRating: 2,    maxRating: 7});/** Output:    {      quests: [        '010602', '010606',        '010609', '010612',        '010614', '010615',        '010616', '010618',        '010707', '010709',        '010730', '010733',        '010736', '010740',        '010744'      ]    }*/

About

An npm module written in Typescript that can find quests for Monster Hunter: Rise via specified parameters

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp