Skip to content

Instantly share code, notes, and snippets.

@Lusamine
Lusamine / Anubis's Item Printer Seeds.md
Last active May 4, 2024 06:34
Index of RNG Seeds for SV Item Printer

Introduction

This page will link to gists containing all the useful seeds I've found thus far for the Item Printer. The seeds are a representation of the time the Item Printer was opened.

These seeds were found by checking every second from 1/1/2000 12:00:00 AM to 12/31/2060 11:59:59 PM. Seeds beyond the limit that can be set on the Switch will take too long.

All times are the exact second that the game uses to generate items. You'll need to calibrate 1-2 seconds before so that clicking "I want to print something!" to start the Item Printer fades to black on the correct second. The format uses 24-hour time.


All of these seeds assume that you have unlocked Poké Ball Lotto and Stellar Tera Shards.

// Global settings to make things easier.
int FlawlessIVs = 3;
// Set these values for your gender ratio:
// Fixed gender = -1
// 50 M : 50 F = 127
// 25 M : 75 F = 191
// 75 M : 25 F = 63
// 87.5 M : 12.5 F = 31
void Main()
{
// Files for verification; needs at least the first one and another one within the next 4.
// Link the folder that your 2 Pokémon are in.
var files = Directory.EnumerateFiles(@"C:\Users\Crowley\Mons", "*.PA8", SearchOption.TopDirectoryOnly);
List<PA8> data = new();
foreach (var file in files)
data.Add(new PA8(File.ReadAllBytes(file)));
@Lusamine
Lusamine / LA Static Encounter Calculator.cs
Last active July 15, 2023 20:42
LINQPad version for searching static encounter spreads.
// Global settings to make things easier.
// Set these values for your gender ratio:
// Fixed gender = -1
// 50 M : 50 F = 127
// 25 M : 75 F = 191
// 75 M : 25 F = 63
// 87.5 M : 12.5 F = 31
// Litleo line doesn't exist in LA so we can ignore the last case.
int GenderCompare = -1;

All the disassembly for the damage formula in Legends: Arceus version 1.1.1.
Labels are mine; hopefully they are correct/understandable.

@Lusamine
Lusamine / Research Catalog.md
Last active May 5, 2024 19:36
List of research so you don't have to look through my Twitter.

Posts are generally in reverse chronological order (newest listed first).
Most listings are mine; others I've worked with or retweeted are noted.

Last updated May 5, 2024.

Scarlet/Violet

Important Tables