mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-14 22:05:34 +01:00
* [Dev] `eggMoves:parse` script no longer crashes without args, errors on exit no more 1 exit code or undefined errors * Version bump * comment fixes --------- Co-authored-by: Wlowscha <54003515+Wlowscha@users.noreply.github.com>
17 lines
573 B
TypeScript
17 lines
573 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2024-2025 Pagefault Games
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
//! DO NOT EDIT THIS FILE - CREATED BY THE `eggMoves:parse` script automatically
|
|
import { MoveId } from "#enums/move-id";
|
|
import { SpeciesId } from "#enums/species-id";
|
|
|
|
/**
|
|
* An object mapping all base form {@linkcode SpeciesId}s to an array of {@linkcode MoveId}s corresponding
|
|
* to their current egg moves.
|
|
* Generated by the `eggMoves:parse` script using a CSV sourced from the current Balance Team spreadsheet.
|
|
*/
|
|
export const speciesEggMoves = "{{table}}";
|