unite-lib 1.0.1 → 1.0.3
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/LICENSE +21 -0
- package/README.md +96 -62
- package/dist/i18n/index.cjs +30 -3
- package/dist/i18n/index.cjs.map +1 -1
- package/dist/i18n/index.global.js +30 -3
- package/dist/i18n/index.global.js.map +1 -1
- package/dist/i18n/index.js +30 -3
- package/dist/i18n/index.js.map +1 -1
- package/dist/index.cjs +30 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.global.js +30 -3
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +30 -3
- package/dist/index.js.map +1 -1
- package/moves/zapdos_s11.png +0 -0
- package/moves/zapdos_s21.png +0 -0
- package/package.json +1 -1
- package/pokemons/roster-zapdos-2x.png +0 -0
- package/pokemons/roster-zapdos.png +0 -0
- package/pokemons/stat-zapdos.png +0 -0
package/dist/i18n/index.js
CHANGED
|
@@ -678,6 +678,31 @@ var pokemons = [
|
|
|
678
678
|
],
|
|
679
679
|
"difficulty": 1
|
|
680
680
|
},
|
|
681
|
+
{
|
|
682
|
+
"name": "Zapdos",
|
|
683
|
+
"dex": 145,
|
|
684
|
+
"images": {
|
|
685
|
+
"main": "pokemons/roster-zapdos.png",
|
|
686
|
+
"big": "pokemons/roster-zapdos-2x.png",
|
|
687
|
+
"complete": "pokemons/stat-zapdos.png",
|
|
688
|
+
"move_s11": "moves/zapdos_s11.png",
|
|
689
|
+
"move_s21": "moves/zapdos_s21.png"
|
|
690
|
+
},
|
|
691
|
+
"active": true,
|
|
692
|
+
"battleType": BattleType.ATTACKER,
|
|
693
|
+
"stats": {
|
|
694
|
+
"offense": 5,
|
|
695
|
+
"endurance": 2,
|
|
696
|
+
"mobility": 1,
|
|
697
|
+
"scoring": 2,
|
|
698
|
+
"support": 2
|
|
699
|
+
},
|
|
700
|
+
"tags": [
|
|
701
|
+
Tag.ATTACKER,
|
|
702
|
+
Tag.RANGED
|
|
703
|
+
],
|
|
704
|
+
"difficulty": 1
|
|
705
|
+
},
|
|
681
706
|
{
|
|
682
707
|
"name": "Dragonite",
|
|
683
708
|
"dex": 149,
|
|
@@ -1756,8 +1781,7 @@ var pokemons = [
|
|
|
1756
1781
|
"complete": "pokemons/stat-dhelmise.png",
|
|
1757
1782
|
"move_s11": "moves/dhelmise_s11.png",
|
|
1758
1783
|
"move_s12": "moves/dhelmise_s12.png",
|
|
1759
|
-
"move_s21": "moves/dhelmise_s21.png"
|
|
1760
|
-
"move_s22": "moves/dhelmise_s22.png"
|
|
1784
|
+
"move_s21": "moves/dhelmise_s21.png"
|
|
1761
1785
|
},
|
|
1762
1786
|
"active": true,
|
|
1763
1787
|
"battleType": BattleType.ALLROUNDER,
|
|
@@ -2328,7 +2352,7 @@ for (const p of pokemons_default) {
|
|
|
2328
2352
|
var en_default = names;
|
|
2329
2353
|
|
|
2330
2354
|
// src/i18n/pt-BR.ts
|
|
2331
|
-
var ptBR = { ...en_default };
|
|
2355
|
+
var ptBR = { ...en_default, zapdos: "Zapdos" };
|
|
2332
2356
|
var pt_BR_default = ptBR;
|
|
2333
2357
|
|
|
2334
2358
|
// src/i18n/ja-JP.ts
|
|
@@ -2358,6 +2382,7 @@ var jaJP = {
|
|
|
2358
2382
|
lapras: "\u30E9\u30D7\u30E9\u30B9",
|
|
2359
2383
|
vaporeon: "\u30B7\u30E3\u30EF\u30FC\u30BA",
|
|
2360
2384
|
snorlax: "\u30AB\u30D3\u30B4\u30F3",
|
|
2385
|
+
zapdos: "\u30B5\u30F3\u30C0\u30FC",
|
|
2361
2386
|
dragonite: "\u30AB\u30A4\u30EA\u30E5\u30FC",
|
|
2362
2387
|
mewtwox: "\u30E1\u30AC\u30DF\u30E5\u30A6\u30C4\u30FCX",
|
|
2363
2388
|
mewtwoy: "\u30E1\u30AC\u30DF\u30E5\u30A6\u30C4\u30FCY",
|
|
@@ -2449,6 +2474,7 @@ var fr = {
|
|
|
2449
2474
|
lapras: "Lokhlass",
|
|
2450
2475
|
vaporeon: "Aquali",
|
|
2451
2476
|
snorlax: "Ronflex",
|
|
2477
|
+
zapdos: "\xC9lecthor",
|
|
2452
2478
|
dragonite: "Dracolosse",
|
|
2453
2479
|
mewtwox: "M\xE9ga-Mewtwo X",
|
|
2454
2480
|
mewtwoy: "M\xE9ga-Mewtwo Y",
|
|
@@ -2540,6 +2566,7 @@ var es = {
|
|
|
2540
2566
|
lapras: "Lapras",
|
|
2541
2567
|
vaporeon: "Vaporeon",
|
|
2542
2568
|
snorlax: "Snorlax",
|
|
2569
|
+
zapdos: "Zapdos",
|
|
2543
2570
|
dragonite: "Dragonite",
|
|
2544
2571
|
mewtwox: "Mega-Mewtwo X",
|
|
2545
2572
|
mewtwoy: "Mega-Mewtwo Y",
|