unite-lib 1.0.3 → 1.1.0

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.
@@ -1,8 +1,7 @@
1
1
  declare const names: Record<string, string>;
2
2
 
3
3
  /**
4
- * Portuguese (Brazil) names. Falls back to English for unmapped entries.
5
- * Add or override keys as needed.
4
+ * Portuguese (Brazil). Same as English for Pokémon names; override here only when pt-BR differs.
6
5
  */
7
6
  declare const ptBR: Record<string, string>;
8
7
 
@@ -1,8 +1,7 @@
1
1
  declare const names: Record<string, string>;
2
2
 
3
3
  /**
4
- * Portuguese (Brazil) names. Falls back to English for unmapped entries.
5
- * Add or override keys as needed.
4
+ * Portuguese (Brazil). Same as English for Pokémon names; override here only when pt-BR differs.
6
5
  */
7
6
  declare const ptBR: Record<string, string>;
8
7
 
@@ -734,6 +734,31 @@ var UniteLib = (() => {
734
734
  ],
735
735
  "difficulty": 1
736
736
  },
737
+ {
738
+ "name": "Moltres",
739
+ "dex": 146,
740
+ "images": {
741
+ "main": "pokemons/roster-moltres.png",
742
+ "big": "pokemons/roster-moltres-2x.png",
743
+ "complete": "pokemons/stat-moltres.png",
744
+ "move_s11": "moves/moltres_s11.png",
745
+ "move_s21": "moves/moltres_s21.png"
746
+ },
747
+ "active": true,
748
+ "battleType": BattleType.ALLROUNDER,
749
+ "stats": {
750
+ "offense": 4,
751
+ "endurance": 2.5,
752
+ "mobility": 2,
753
+ "scoring": 2,
754
+ "support": 2
755
+ },
756
+ "tags": [
757
+ Tag.ALLROUNDER,
758
+ Tag.MELEE
759
+ ],
760
+ "difficulty": 2
761
+ },
737
762
  {
738
763
  "name": "Dragonite",
739
764
  "dex": 149,
@@ -762,7 +787,7 @@ var UniteLib = (() => {
762
787
  "difficulty": 1
763
788
  },
764
789
  {
765
- "name": "Mewtwo X",
790
+ "name": "Mega Mewtwo X",
766
791
  "dex": 150,
767
792
  "images": {
768
793
  "main": "pokemons/roster-mewtwox.png",
@@ -789,7 +814,7 @@ var UniteLib = (() => {
789
814
  "difficulty": 1
790
815
  },
791
816
  {
792
- "name": "Mewtwo Y",
817
+ "name": "Mega Mewtwo Y",
793
818
  "dex": 150,
794
819
  "images": {
795
820
  "main": "pokemons/roster-mewtwoy.png",
@@ -2383,7 +2408,7 @@ var UniteLib = (() => {
2383
2408
  var en_default = names;
2384
2409
 
2385
2410
  // src/i18n/pt-BR.ts
2386
- var ptBR = { ...en_default, zapdos: "Zapdos" };
2411
+ var ptBR = { ...en_default };
2387
2412
  var pt_BR_default = ptBR;
2388
2413
 
2389
2414
  // src/i18n/ja-JP.ts