npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

splatoon-3-rotation

v1.1.5

Published

This is a shedules for Splatoon 3

Downloads

15

Readme

Splatoon 3 rotation

Splatoon-3-Rotation is a module to get rotations in Splatoon 3. I'm helped with splatoon3.ink.

Installation:

To install this module, just write this command on your commandline:

npm i splatoon-3-rotation

Usage:

Import

You can import this module with this code :

const Splatoon3 = require("splatoon-3-rotation")

To get the regular Schedules

To get the Turf War or Ranked series/open rotation schedules, you can use this function: regularRotation().

Splatoon3.regularRotation("en", 16, (err, data) =>{
    if(err) return console.log(err)
    console.log(data)
});
  • en is a language selected to have the name of the maps and game modes translated, you can exchange en by available language.

  • 16 is the hour selected to know the Schedule of the rotation, you can exchange with this conditions:

    • 0 - 24 for 0 - 24 hour
    • now for the actual rotation

Normally you obtain a result like this :

{
  regular: {
    start_time: '2022-10-09T22:00:00Z',
    end_time: '2022-10-10T00:00:00Z',
    firstStage: {
      name: 'Hammerhead Bridge',
      image: 'https://splatoon3.ink/assets/splatnet/stage_img/icon/low_resolution/1db8ab338b64b464df50e7f9e270e59423ff8caac6f09679a24f1b7acf3a82f3_1.png'
    },
    secondStage: {
      name: 'MakoMart',
      image: 'https://splatoon3.ink/assets/splatnet/stage_img/icon/low_resolution/a8ba96c3dbd015b7bc6ea4fa067245c4e9aee62b6696cb41e02d35139dd21fe7_1.png'
    },
    mode: 'Turf War'
  },
  ranked: {
    series: {
      start_time: '2022-10-09T22:00:00Z',
      end_time: '2022-10-10T00:00:00Z',
      firstStage: [Object],
      secondStage: [Object],
      mode: 'Splat Zones'
    },
    open: {
      start_time: '2022-10-09T22:00:00Z',
      end_time: '2022-10-10T00:00:00Z',
      firstStage: [Object],
      secondStage: [Object],
      mode: 'Rainmaker'
    }
  }
}

To get the Salmon rotation

To get the salmon rotation schedules, you can use this function: salmonRotation().

Splatoon3.salmonRotation("en", 1, (err, data) =>{
    if(err) return console.log(err)
    console.log(data)
});
  • en is a language selected to have the name of the maps and game modes translated, you can exchange en by available language.

  • 1 is the actual or coming soon Schedule of the rotation, you can exchange with this conditions:

    • 0 for actual rotation
    • 1 - 4 for coming soon rotations
    • now for the actual rotation

Normally you obtain a result like this :

{
  details: {
    start_time: '2022-10-08T08:00:00Z',
    end_time: '2022-10-10T00:00:00Z',
    stage: {
      name: 'Sockeye Station',
      image: 'https://splatoon3.ink/assets/splatnet/stage_img/icon/high_resolution/3418d2d89ef84288c78915b9acb63b4ad48df7bfcb48c27d6597920787e147ec_0.png'
    }
  },
  weapons: {
    first: {
      name: 'Tri-Slosher',
      image: 'https://splatoon3.ink/assets/splatnet/weapon_illust/f3dbd98d5b0e89f7be7eff25a5c63a06045fe64d8ffd5886e79c855e16791563_0.png'
    },
    second: {
      name: 'Splat Brella',
      image: 'https://splatoon3.ink/assets/splatnet/weapon_illust/15d101d0d11acbb8159e2701282879f2617d90c8573fd2f2239807721ff54ca4_0.png'
    },
    third: {
      name: 'Splattershot Pro',
      image: 'https://splatoon3.ink/assets/splatnet/weapon_illust/5607f7014bbc7339feeb67218c05ef19c7a466152b1bd056a899b955127ea433_0.png'
    },
    fourth: {
      name: 'Tri-Stringer',
      image: 'https://splatoon3.ink/assets/splatnet/weapon_illust/676d9f49276f171a93ac06646c0fbdfbeb8c3d0284a057aee306404a6034ffef_0.png'
    }
  }
}

Avalaible languages

Current available language :

  • en: English language English
  • fr: French language Français
  • es: Spanish language español
  • de: German language Deutsch

If something wrong with the translate, please tell me for fix that ;)

Thanks you for download my module

Octokling ;)