danielwerg / r6data

πŸ“Š Operators, weapons, seasons, maps, gadgets and attachments data for Rainbow Six Siege

Home Page:https://npm.im/r6data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

R6Data

πŸ“Š Data for r6api.js and similar projects

License Version Latest release NPM weakly downloads Discord guild

GitHub NPM Yarn Releases Changelog

πŸ’Ύ Installation

yarn add r6data

or

npm install r6data

πŸ‘€ Usage

Table of operators which are going to drop in price:

import { OPERATORS } from 'r6data';

console.table(
  OPERATORS.filter(({ isRecruit }) => !isRecruit)
    .filter(({ nextPriceDropSeasons }) => nextPriceDropSeasons)
    .map(({ name, price, nextPriceDropSeasons }) => ({
      name,
      price: price?.renown,
      priceDrop: nextPriceDropSeasons ?? 0
    }))
);

πŸ’Œ Acknowledgments

Operator icons from r6operators.marcopixel.eu

About

πŸ“Š Operators, weapons, seasons, maps, gadgets and attachments data for Rainbow Six Siege

https://npm.im/r6data

License:MIT License


Languages

Language:TypeScript 100.0%Language:JavaScript 0.0%