enefel 2.11.15 → 2.12.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.
- package/2025/newSkills.ts +1 -1
- package/dist/2025/newSkills.js +1 -1
- package/dist/package-lock.json +2 -2
- package/dist/package.json +1 -1
- package/dist/skill.d.ts +1 -0
- package/dist/skill.js +2 -2
- package/npm-publish.sh +8 -1
- package/package.json +1 -1
- package/skill.ts +2 -2
package/2025/newSkills.ts
CHANGED
|
@@ -181,7 +181,7 @@ export const newSkills: NewSkill[] = [
|
|
|
181
181
|
family: "Devious",
|
|
182
182
|
mode: "Active",
|
|
183
183
|
summary:
|
|
184
|
-
"Gagne des
|
|
184
|
+
"Gagne des PSP quand une Action Spéciale de ce joueur cause une Élimination. Réservé aux joueurs ayant un Trait d'Action Spéciale.",
|
|
185
185
|
},
|
|
186
186
|
{
|
|
187
187
|
name: "Block",
|
package/dist/2025/newSkills.js
CHANGED
|
@@ -145,7 +145,7 @@ exports.newSkills = [
|
|
|
145
145
|
name: "Violent Innovator",
|
|
146
146
|
family: "Devious",
|
|
147
147
|
mode: "Active",
|
|
148
|
-
summary: "Gagne des
|
|
148
|
+
summary: "Gagne des PSP quand une Action Spéciale de ce joueur cause une Élimination. Réservé aux joueurs ayant un Trait d'Action Spéciale.",
|
|
149
149
|
},
|
|
150
150
|
{
|
|
151
151
|
name: "Block",
|
package/dist/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "enefel",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "enefel",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.12.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"csv-parse": "^6.1.0",
|
package/dist/package.json
CHANGED
package/dist/skill.d.ts
CHANGED
package/dist/skill.js
CHANGED
|
@@ -146,7 +146,7 @@ var SKILL_NAMES;
|
|
|
146
146
|
SKILL_NAMES["UNCHANNELLED_FURY"] = "unchannelled-fury";
|
|
147
147
|
SKILL_NAMES["UNSTEADY"] = "unsteady";
|
|
148
148
|
SKILL_NAMES["VERY_LONG_LEGS"] = "very-long-legs";
|
|
149
|
-
|
|
149
|
+
SKILL_NAMES["VIOLENT_INNOVATOR"] = "violent-innovator";
|
|
150
150
|
SKILL_NAMES["WRESTLE"] = "wrestle";
|
|
151
151
|
SKILL_NAMES["DIVING_CATCH"] = "diving-catch";
|
|
152
152
|
})(SKILL_NAMES || (exports.SKILL_NAMES = SKILL_NAMES = {}));
|
|
@@ -281,7 +281,7 @@ const SKILL_DEVIOUS = [
|
|
|
281
281
|
// SKILL_NAMES.SABOTEUR,
|
|
282
282
|
SKILL_NAMES.SHADOWING,
|
|
283
283
|
SKILL_NAMES.SNEAKY_GIT,
|
|
284
|
-
|
|
284
|
+
SKILL_NAMES.VIOLENT_INNOVATOR,
|
|
285
285
|
];
|
|
286
286
|
const SKILL_SPECIAL = [
|
|
287
287
|
SKILL_NAMES.BIG_GUY,
|
package/npm-publish.sh
CHANGED
|
@@ -74,7 +74,14 @@ npm publish
|
|
|
74
74
|
# Vérifier si la publication a réussi
|
|
75
75
|
if [ $? -eq 0 ]; then
|
|
76
76
|
echo -e "${GREEN}Package publié avec succès !${NC}"
|
|
77
|
-
|
|
77
|
+
|
|
78
|
+
# Tag git pour marquer la version publiée (utilisé par build.sh pour détecter les changements)
|
|
79
|
+
PUBLISHED_VERSION=$(node -p "require('./package.json').version")
|
|
80
|
+
cd ..
|
|
81
|
+
git tag "enefel-v${PUBLISHED_VERSION}"
|
|
82
|
+
echo -e "${GREEN}Tag git enefel-v${PUBLISHED_VERSION} créé${NC}"
|
|
83
|
+
cd enefel
|
|
84
|
+
|
|
78
85
|
# Afficher les informations sur le package
|
|
79
86
|
echo -e "${BLUE}Informations sur le package :${NC}"
|
|
80
87
|
npm view
|
package/package.json
CHANGED
package/skill.ts
CHANGED
|
@@ -133,7 +133,7 @@ enum SKILL_NAMES {
|
|
|
133
133
|
UNCHANNELLED_FURY = "unchannelled-fury",
|
|
134
134
|
UNSTEADY = "unsteady",
|
|
135
135
|
VERY_LONG_LEGS = "very-long-legs",
|
|
136
|
-
|
|
136
|
+
VIOLENT_INNOVATOR = "violent-innovator",
|
|
137
137
|
WRESTLE = "wrestle",
|
|
138
138
|
DIVING_CATCH = "diving-catch",
|
|
139
139
|
}
|
|
@@ -275,7 +275,7 @@ const SKILL_DEVIOUS: SKILL_NAMES[] = [
|
|
|
275
275
|
// SKILL_NAMES.SABOTEUR,
|
|
276
276
|
SKILL_NAMES.SHADOWING,
|
|
277
277
|
SKILL_NAMES.SNEAKY_GIT,
|
|
278
|
-
|
|
278
|
+
SKILL_NAMES.VIOLENT_INNOVATOR,
|
|
279
279
|
];
|
|
280
280
|
|
|
281
281
|
const SKILL_SPECIAL: SKILL_NAMES[] = [
|