@pkmn/mods 0.9.34 → 0.9.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -21,6 +21,7 @@ This package contains data and logic for several mods:
21
21
  - `gen1jpn`: A mod on top of Generation 1 which implements Japanese version-specific mechanics
22
22
  - `gen1stadium`: A mod on top of Generation 1 which implements Pokémon Stadium
23
23
  - `gen2stadium2`: A mod on top of Generation 2 which implements Pokémon Stadium 2
24
+ - `gen3rs`: A mod on top of Generation 3 which contains data from just Ruby and Sapphire
24
25
  - `gen4pt`: A mod on top of Generation 4 which contains data from just Diamond, Pearl, and Platinum
25
26
  - `gen5bw1`: A mod on top of Generation 5 which contains data from just Black & White
26
27
  - `gen6xy`: A mod on top of Generation 6 which contains data from just X & Y
@@ -0,0 +1,18 @@
1
+ import { ModdedSpeciesFormatsDataTable, ModdedItemDataTable, ModdedLearnsetDataTable, ModdedBattleScriptsData } from '@pkmn/sim';
2
+
3
+ declare const FormatsData: ModdedSpeciesFormatsDataTable;
4
+
5
+ declare const Formats: {
6
+ name: string;
7
+ mod: string;
8
+ ruleset: string[];
9
+ banlist: string[];
10
+ }[];
11
+
12
+ declare const Items: ModdedItemDataTable;
13
+
14
+ declare const Learnsets: ModdedLearnsetDataTable;
15
+
16
+ declare const Scripts: ModdedBattleScriptsData;
17
+
18
+ export { Formats, FormatsData, Items, Learnsets, Scripts };
@@ -0,0 +1,18 @@
1
+ import { ModdedSpeciesFormatsDataTable, ModdedItemDataTable, ModdedLearnsetDataTable, ModdedBattleScriptsData } from '@pkmn/sim';
2
+
3
+ declare const FormatsData: ModdedSpeciesFormatsDataTable;
4
+
5
+ declare const Formats: {
6
+ name: string;
7
+ mod: string;
8
+ ruleset: string[];
9
+ banlist: string[];
10
+ }[];
11
+
12
+ declare const Items: ModdedItemDataTable;
13
+
14
+ declare const Learnsets: ModdedLearnsetDataTable;
15
+
16
+ declare const Scripts: ModdedBattleScriptsData;
17
+
18
+ export { Formats, FormatsData, Items, Learnsets, Scripts };