heroes-of-chess-components 0.6.15 → 0.6.17

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.
@@ -34,6 +34,12 @@ import Nocturnus from '../assets/pets/petsSVG/Nocturnus.png';
34
34
  import NoctiBG from '../assets/pets/Nocti.png';
35
35
  import NoctumBG from '../assets/pets/Noctum.png';
36
36
  import NocturnusBG from '../assets/pets/Nocturnus.png';
37
+ import Toxigron from '../assets/pets/petsSVG/Toxigron.png';
38
+ import ToxigronBG from '../assets/pets/Toxigron.png';
39
+ import Pyrodriax from '../assets/pets/petsSVG/Pyrodriax.png';
40
+ import PyrodriaxBG from '../assets/pets/Pyrodriax.png';
41
+ import Umbratox from '../assets/pets/petsSVG/Umbratox.png';
42
+ import UmbratoxBG from '../assets/pets/Umbratox.png';
37
43
  export var AllFreePets = [{
38
44
  originalName: "Lux",
39
45
  name: 'Lux',
@@ -89,4 +95,32 @@ export var AllFreePets = [{
89
95
  extraInfo: ["Nocti: This darkness-type owl is a mysterious guardian in the realm of the video game, whose large eyes reflect a wisdom that transcends the eternal night. It is cunning and observant, capable of deciphering the most hidden secrets and easily navigating through the most enigmatic labyrinths. Despite its somber appearance, it possesses a noble spirit and unbreakable loyalty towards those who earn its trust. On the battlefield, it is a natural strategist, always three steps ahead of its adversary, an invaluable ally in the fight against the shadows.", "Noctum: Its deep gaze is a portal to ancient knowledge, offering guidance and wisdom to those who seek the truth in the shadows. Despite its association with darkness, it radiates a calming presence, serving as a beacon in the darkness for its allies. On the battlefield, its strategy is as unpredictable as shooting stars, leaving its enemies in a perpetual state of wonder and caution.", 'Nocturnus: His psychological profile is that of a natural strategist and a guardian of ancient secrets. He exhibits an impenetrable calmness and an intelligence that is reflected in his intense eyes, which see beyond illusions and darkness. As a leader on the battlefield, he is as silent as the night, moving with a grace that defies his intimidating appearance, and his presence inspires a mix of respect and deep trust in his allies.'],
90
96
  evo: [2000, 2400]
91
97
  }];
98
+ export var AllStorePets = [{
99
+ originalName: "Toxigron",
100
+ name: 'Toxigron',
101
+ notEvo: true,
102
+ img: Toxigron,
103
+ backImg: ToxigronBG,
104
+ personality: ['Fierce', 'Agile', 'Unpredictable'],
105
+ extraInfo: ['Toxigron: This legendary fire otter is a force of nature wrapped in flames and fury. With armor forged from volcanic scales and a tail that blazes like a living inferno, it moves with astonishing agility through any battlefield. Its fierce personality is matched only by its unpredictable combat style, switching between calculated strikes and explosive attacks that leave opponents bewildered. Despite its intimidating appearance, Toxigron possesses a playful spirit that emerges in moments of victory, celebrating with dazzling fire displays. Its loyalty to its master is absolute, and it will not hesitate to unleash its full power to protect those it considers family.'],
106
+ elo: 2200
107
+ }, {
108
+ originalName: "Pyrodriax",
109
+ name: 'Pyrodriax',
110
+ notEvo: true,
111
+ img: Pyrodriax,
112
+ backImg: PyrodriaxBG,
113
+ personality: ['Majestic', 'Patient', 'Regenerative'],
114
+ extraInfo: ['Pyrodriax: This magnificent legendary creature embodies the perfect fusion between nature and crystalline power. With armor made of living emerald crystals and a body that seems to grow flora from its very essence, it represents the eternal cycle of growth and renewal. Its majestic personality reflects centuries of wisdom, moving with deliberate patience that belies its massive power. Pyrodriax has the unique ability to regenerate both itself and its allies through the life force flowing from its crystalline structures. The purple flowers blooming from its armor are not mere decoration but conduits of ancient magic. In battle, it is a bastion of endurance, weathering attacks while nurturing its team with healing energies.'],
115
+ elo: 2200
116
+ }, {
117
+ originalName: "Umbratox",
118
+ name: 'Umbratox',
119
+ notEvo: true,
120
+ img: Umbratox,
121
+ backImg: UmbratoxBG,
122
+ personality: ['Enigmatic', 'Vigilant', 'Ethereal'],
123
+ extraInfo: ['Umbratox: This ethereal legendary phoenix represents the convergence of shadow and spectral energy. With wings that shimmer between darkness and cyan light, and crystalline formations that pulse with otherworldly power, it soars through dimensions that others cannot perceive. Its enigmatic personality makes it difficult to predict, as it exists partially between worlds, observing all with its vigilant gaze. Umbratox possesses the rare ability to manipulate both darkness and spectral energy, creating devastating combinations that confuse and overwhelm opponents. The emerald crystals embedded in its form are fragments of pure magical essence, granting it powers that defy conventional understanding. Despite its ghostly nature, it forms deep bonds with those who earn its trust, becoming an eternal guardian whose protection transcends the boundaries of life and death.'],
124
+ elo: 2200
125
+ }];
92
126
  export default AllFreePets;
@@ -6,7 +6,7 @@ export { default as AllTickets } from "./AllTickets";
6
6
  export { default as allTicketsRewards } from "./AllTicketsRewards";
7
7
  export { default as AICharacters } from "./AllAICharacters";
8
8
  export { default as AllArchetypes } from "./AllArchetype";
9
- export { default as AllFreePets } from "./AllFreePets";
9
+ export { default as AllFreePets, AllStorePets } from "./AllPets";
10
10
  export { default as AllExercises } from "./AllExercises";
11
11
  export { default as AllDashboardCards } from "./AllDashboardCards";
12
12
  export { default as miniGames } from "./AllMiniGames";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heroes-of-chess-components",
3
- "version": "0.6.15",
3
+ "version": "0.6.17",
4
4
  "description": "Reusable React Components for Heroes of Chess Apps",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",