Skip to content

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

License

Notifications You must be signed in to change notification settings

danielwerg/r6data

Repository files navigation

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