Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@59naga/gbf-data

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@59naga/gbf-data

build granbluefantasy json files using yaml

  • 0.0.16
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

gbf-data

Npm version Build Status

src/chars -> dist/chars.json

gbf-teamsimulatorで使用します。

src/raid -> dist/raid.json

gbf-raid-serverでtwitter検索に使用するボス名の一覧をjsonで出力しdistに保存しています。

用法

axiosを使用してunpkg.comから直接使用するか、jsonファイルをダウンロードしてrequire/importしてください。

import createIoClient from 'socket.io-client';
import bosses from './gbf-raid-bosses.json'

createIoClient('https://gbf-raid-server.herokuapp.com/')
  .emit('gbf-raid-server:cache', (error, tweets) => {
    console.log(tweets);
    // [{id: '451A60CE', name: 'Lv100 ティアマト・マグナ=エア', createdAt: '2018-07-06 10:26:56'}, {...}]
  })
  .on('gbf-raid-server:tweet', (tweet) => {
    console.log(tweet);
    // {"id":"685D3F6E","name":"Lvl 100 Tiamat Omega Ayr","memo":"","urlOrigin":"twitter.com/0chokdee0/status/1016741472874291200", /*...*/ ,"createdAt":"2018-07-11 02:50:31"}

    const boss = bosses.find(boss => tweet.name === boss.name || tweet.name === boss.name_en)
    console.log(boss)
    // {"alias":"lv100-tiamat-omega-ayr","category":"impossible1","id":"","name":"Lv100 ティアマト・マグナ=エア","name_en":"Lvl 100 Tiamat Omega Ayr","image":"https://pbs.twimg.com/media/CT6cNUBUAAETdz6.jpg","element":"Wind"}
  });

jsonは一次元配列でボスごとにオブジェクトで下記の情報を持ちます。

  • alias: stringidが定義できていないため、現状idの代わりに識別子として使用する文字列です
  • category: string共闘部屋を基準に見た共闘の種別。
  • id: string…実際のゲーム画像などで使用されている10桁の数値。ティアマトマグナHL…2040020000など。現在管理できていません。
  • name: string…twitterの救援ツイートで使用されるボスの正式名称(日本語版)。
  • name_en: string…twitterの救援ツイートで使用されるボスの正式名称(英語版)。
  • image: string…twitterで添付される画像。日本語のものを使用
  • element: "None" | "Fire" | "Water" | "Earth" | "Wind" | "Light" | "Dark"…ボスの属性。GBF-Raidersから転載しています

ライセンス

MIT

FAQs

Package last updated on 02 Oct 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc