@sancti0n/nikke-utils 1.1.5 → 1.1.7
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/package.json +7 -2
- package/src/data/characters.js +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sancti0n/nikke-utils",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Un kit complet pour les développeurs Nikke: Goddess of Victory",
|
|
6
6
|
"repository": {
|
|
@@ -8,5 +8,10 @@
|
|
|
8
8
|
"url": "git+https://github.com/Sancti0n/nikke-utils.git"
|
|
9
9
|
},
|
|
10
10
|
"author": "Sancti0n",
|
|
11
|
-
"license": "MIT"
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"javascript",
|
|
14
|
+
"data",
|
|
15
|
+
"nikke"
|
|
16
|
+
]
|
|
12
17
|
}
|
package/src/data/characters.js
CHANGED
|
@@ -181,6 +181,9 @@ const characters = [
|
|
|
181
181
|
{ id: 178, name: "Snow White: Heavy Arms", rarity: "SSR", burst: "III", element: "Water", manufacturer: "Pilgrim", class: "Attacker", weapon: "Sniper Rifle", squad: "Goddess", specialties: { 1: "Debuffer", 2: "Pierce", 3: "Screen Wipe" }, treasure: "no", reEnterBurstSkill: "no", canChangeBurstStageThreeToOne: "no", cooldown: { "III": 40 }, dateAdded: "2025-12-31" },
|
|
182
182
|
{ id: 179, name: "Label", rarity: "SSR", burst: "I", element: "Iron", manufacturer: "Elysion", class: "Defender", weapon: "Assault Rifle", squad: "Best Seller", specialties: { 1: "Buffer", 2: "Shielder", 3: "Stack Oriented" }, treasure: "no", reEnterBurstSkill: "no", canChangeBurstStageThreeToOne: "no", cooldown: { "I": 20 }, dateAdded: "2026-01-15" },
|
|
183
183
|
{ id: 180, name: "Velvet", rarity: "SSR", burst: "II", element: "Wind", manufacturer: "Tetra Line", class: "Supporter", weapon: "Sniper Rifle", squad: "Maid for you", specialties: { 1: "Buffer" }, treasure: "no", reEnterBurstSkill: "no", canChangeBurstStageThreeToOne: "no", cooldown: { "II": 20 }, dateAdded: "2026-01-29" },
|
|
184
|
+
{ id: 181, name: "Chisato Nishikigi", rarity: "SSR", burst: "", element: "", manufacturer: "Abnormal", class: "", weapon: "Sub Machine Gun", squad: "", specialties: {}, treasure: "no", reEnterBurstSkill: "no", canChangeBurstStageThreeToOne: "no", cooldown: {}, dateAdded: "2026-02-12" },
|
|
185
|
+
{ id: 182, name: "Takina Inoue", rarity: "SSR", burst: "II", element: "Wind", manufacturer: "Abnormal", class: "", weapon: "Sniper Rifle", squad: "", specialties: {}, treasure: "no", reEnterBurstSkill: "no", canChangeBurstStageThreeToOne: "no", cooldown: {}, dateAdded: "2026-02-19" },
|
|
186
|
+
{ id: 183, name: "Kurumi", rarity: "SR", burst: "II", element: "Wind", manufacturer: "Abnormal", class: "", weapon: "Assault Rifle", squad: "", specialties: {}, treasure: "no", reEnterBurstSkill: "no", canChangeBurstStageThreeToOne: "no", cooldown: {}, dateAdded: "2026-02-12" },
|
|
184
187
|
];
|
|
185
188
|
|
|
186
189
|
export function getAllNikkes() {
|