@opfr/raids 0.8.16 → 0.10.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/assets/happy_christmas/end_happy_ending.webp +0 -0
- package/assets/happy_christmas/end_refuse_quest.webp +0 -0
- package/assets/happy_christmas/ev_abandoned_village.webp +0 -0
- package/assets/happy_christmas/ev_candies_island.webp +0 -0
- package/assets/happy_christmas/ev_center_village.webp +0 -0
- package/assets/happy_christmas/ev_enter_in_temple.webp +0 -0
- package/assets/happy_christmas/ev_espace_giant.webp +0 -0
- package/assets/happy_christmas/ev_fail_attack_on_jack_frost.webp +0 -0
- package/assets/happy_christmas/ev_follow_giant_trace.webp +0 -0
- package/assets/happy_christmas/ev_forest_already_meet_giant.webp +0 -0
- package/assets/happy_christmas/ev_found_bear.webp +0 -0
- package/assets/happy_christmas/ev_found_elf.webp +0 -0
- package/assets/happy_christmas/ev_found_refuge.webp +0 -0
- package/assets/happy_christmas/ev_found_reinder.webp +0 -0
- package/assets/happy_christmas/ev_found_santa_claus_house.webp +0 -0
- package/assets/happy_christmas/ev_free_elf.webp +0 -0
- package/assets/happy_christmas/ev_frozen_clouds.webp +0 -0
- package/assets/happy_christmas/ev_futur_spirit.webp +0 -0
- package/assets/happy_christmas/ev_giant_cavern.webp +0 -0
- package/assets/happy_christmas/ev_giant_spawn.webp +0 -0
- package/assets/happy_christmas/ev_gingerbread.webp +0 -0
- package/assets/happy_christmas/ev_jack_frost_hit.webp +0 -0
- package/assets/happy_christmas/ev_last_attack.webp +0 -0
- package/assets/happy_christmas/ev_look_magic_map.webp +0 -0
- package/assets/happy_christmas/ev_looking_across_window.webp +0 -0
- package/assets/happy_christmas/ev_past_spirit.webp +0 -0
- package/assets/happy_christmas/ev_present_spirit.webp +0 -0
- package/assets/happy_christmas/ev_reinder_human.webp +0 -0
- package/assets/happy_christmas/ev_rest_and_listen.webp +0 -0
- package/assets/happy_christmas/ev_rest_and_listen_but_nothing_given.webp +0 -0
- package/assets/happy_christmas/ev_santa_claus_island.webp +0 -0
- package/assets/happy_christmas/ev_snowy_forest.webp +0 -0
- package/assets/happy_christmas/ev_storm.webp +0 -0
- package/assets/happy_christmas/ev_succeed_attack_again.webp +0 -0
- package/assets/happy_christmas/ev_succeed_attack_again_again.webp +0 -0
- package/assets/happy_christmas/ev_success_convince.webp +0 -0
- package/assets/happy_christmas/ev_sugar_forest.webp +0 -0
- package/assets/happy_christmas/ev_too_much_sugar.webp +0 -0
- package/assets/happy_christmas/ev_village.webp +0 -0
- package/assets/happy_christmas/ev_warm.webp +0 -0
- package/assets/happy_christmas/ev_win_fight.webp +0 -0
- package/dist/index.es.js +8862 -2884
- package/dist/index.umd.js +16 -16
- package/dist/raids/happyChristmas.d.ts +4 -0
- package/dist/raids/happyChristmas.d.ts.map +1 -0
- package/dist/raids/happyChristmas.js +5585 -0
- package/dist/raids/happyChristmas.js.map +1 -0
- package/dist/raids/index.d.ts +1 -0
- package/dist/raids/index.d.ts.map +1 -1
- package/dist/raids/index.js +1 -0
- package/dist/raids/index.js.map +1 -1
- package/dist/raids/mysteriousIsland.d.ts.map +1 -1
- package/dist/raids/mysteriousIsland.js +2 -1
- package/dist/raids/mysteriousIsland.js.map +1 -1
- package/dist/raids/pirateCave.d.ts.map +1 -1
- package/dist/raids/pirateCave.js +2 -1
- package/dist/raids/pirateCave.js.map +1 -1
- package/dist/raids/questHappyChristmas.d.ts +4 -0
- package/dist/raids/questHappyChristmas.d.ts.map +1 -0
- package/dist/raids/questHappyChristmas.js +5591 -0
- package/dist/raids/questHappyChristmas.js.map +1 -0
- package/dist/raids/resources.d.ts.map +1 -1
- package/dist/raids/resources.js +2 -1
- package/dist/raids/resources.js.map +1 -1
- package/dist/raids/training.d.ts.map +1 -1
- package/dist/raids/training.js +8 -7
- package/dist/raids/training.js.map +1 -1
- package/dist/types.d.ts +32 -13
- package/dist/types.d.ts.map +1 -1
- package/dist/utils.d.ts +3 -3
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +20 -5
- package/dist/utils.js.map +1 -1
- package/locales/fr.json +672 -0
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opfr/raids",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "OPFR raids",
|
|
6
6
|
"author": "Matthieu VEIGA",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"prepublish": "npm run build",
|
|
9
|
-
"build:raids": "node ./scripts/raidBuilder.mjs",
|
|
9
|
+
"build:raids": "node ./scripts/raidBuilder.mjs && npx prettier --write \"src/**/*.{js,mjs,jsx,ts,tsx,json,css,scss}\"",
|
|
10
10
|
"build:images": "node ./scripts/generateImages.mjs",
|
|
11
11
|
"build": "vite build && tsc"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@opfr/emojis": "^0.
|
|
15
|
-
"@opfr/items": "^0.
|
|
14
|
+
"@opfr/emojis": "^0.14.0",
|
|
15
|
+
"@opfr/items": "^0.31.0",
|
|
16
16
|
"@opfr/translate": "^0.1.0",
|
|
17
17
|
"@opfr/utils-lang": "^0.12.1",
|
|
18
|
-
"@opfr/utils-type": "^0.
|
|
18
|
+
"@opfr/utils-type": "^0.16.0"
|
|
19
19
|
},
|
|
20
20
|
"main": "./dist/index.umd.js",
|
|
21
21
|
"module": "./dist/index.es.js",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"node_modules",
|
|
40
40
|
"dist"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "1057943149720a5dd8d877bdbcd9f72b06ad6635"
|
|
43
43
|
}
|