diff --git a/src/data/abilityData.js b/src/data/abilityData.js new file mode 100644 index 0000000..1669887 --- /dev/null +++ b/src/data/abilityData.js @@ -0,0 +1,41 @@ +const abilityEn = [ + { + name: "Physical", + _abilityId: 0, + description: + "The ability to perform physical tasks. More means more Hp and melee efficiency", + }, + { + name: "Agility", + _abilityId: 1, + description: + "The ability to perform agile tasks. More means more ranged efficiency and sneakiness", + }, + { + name: "Mental", + _abilityId: 2, + description: + "The ability to perform mental tasks. More means more chakra and jutsu efficiency", + }, +]; + +const abilityFr = [ + { + name: "Physique", + _abilityId: 0, + description: + "La capacité à effectuer des tâches physiques. Plus signifie plus de points de vie et d'efficacité au corps à corps", + }, + { + name: "Agilité", + _abilityId: 1, + description: + "La capacité à effectuer des tâches agiles. Plus signifie plus d'efficacité à distance et de furtivité", + }, + { + name: "Mental", + _abilityId: 2, + description: + "La capacité à effectuer des tâches mentales. Plus signifie plus de chakra et d'efficacité aux jutsus", + }, +]; diff --git a/src/data/actionTypeData.js b/src/data/actionTypeData.js new file mode 100644 index 0000000..bb47638 --- /dev/null +++ b/src/data/actionTypeData.js @@ -0,0 +1,44 @@ +const actionTypesEn = [ + { + name: "Simple", + description: + "The main action of the turn. Attacking, using an item or using a Jutsu", + }, + { + name: "Bonus", + description: + "The bonus action of the turn. Specified in a skill, often for a combo or a special move to add flavour to the main action", + }, + { + name: "Movement", + description: + "Moving around the battlefield. Can be used before, during and after the other actions", + }, + { + name: "Reaction", + description: + "Allow to react during other players turn. Can be used only once per turn", + }, +]; +const actionTypesFr = [ + { + name: "Simple", + description: + "L'action principale du tour. Attaquer, utiliser un objet ou utiliser un Jutsu", + }, + { + name: "Bonus", + description: + "L'action bonus du tour. Spécifiée dans une compétence, souvent pour un combo ou un mouvement spécial afin d'ajouter de l'impact à l'action principale", + }, + { + name: "Mouvement", + description: + "Se déplacer sur le champ de bataille. Peut être utilisé avant, pendant et après les autres actions", + }, + { + name: "Réaction", + description: + "Permet de réagir pendant le tour des autres joueurs. Ne peut être utilisé qu'une fois par tour", + }, +]; diff --git a/src/data/clanData.js b/src/data/clanData.js new file mode 100644 index 0000000..cad7fd7 --- /dev/null +++ b/src/data/clanData.js @@ -0,0 +1,61 @@ +const clansEn = [ + { + name: "Bojambu", + color: "yellow", + description: + "The Bojambu clan is a clan of warriors who are skilled in hand-to-hand combat and weaponery. They banned jutsus in their day to day life long ago", + elementSpecialization: { type: "" }, //Earth mongoId here + }, + { + name: "Hibiki", + color: "red", + description: + "The Hibikis are nomads that travel around the world to find new jutsus to master", + elementSpecialization: { type: "" }, //Fire mongoId here + }, + { + name: "Hiadoro", + color: "blue", + description: + "The hiadoros are a clan of protector of the forest. They live in harmony with spirits and animals", + elementSpecialization: { type: "" }, //Water mongoId here + }, + { + name: "Gan", + color: "purple", + description: + "The gan clan is a clan of assassins who are skilled in the art of stealth and deception. They infiltrate other clans to steal their jutsus", + elementSpecialization: { type: "" }, //Wind mongoId here + }, +]; + +const clansFr = [ + { + name: "Bojambu", + color: "jaune", + description: + "Le clan Bojambu est un clan de guerriers experts en combat rapproché et en armement. Ils ont banni les jutsus de leur vie quotidienne depuis longtemps", + elementSpecialization: { type: "" }, //Identifiant mongo de la Terre ici + }, + { + name: "Hibiki", + color: "rouge", + description: + "Les Hibiki sont des nomades qui parcourent le monde à la recherche de nouveaux jutsus à maîtriser", + elementSpecialization: { type: "" }, //Identifiant mongo du Feu ici + }, + { + name: "Hiadoro", + color: "bleu", + description: + "Les Hiadoro sont un clan de protecteurs de la forêt. Ils vivent en harmonie avec les esprits et les animaux", + elementSpecialization: { type: "" }, //Identifiant mongo de l'Eau ici + }, + { + name: "Gan", + color: "violet", + description: + "Le clan Gan est un clan d'assassins experts dans l'art de la furtivité et de la tromperie. Ils s'infiltrent dans d'autres clans pour voler leurs jutsus", + elementSpecialization: { type: "" }, //Identifiant mongo du Vent ici + }, +]; diff --git a/src/data/elementData.js b/src/data/elementData.js new file mode 100644 index 0000000..5dbad71 --- /dev/null +++ b/src/data/elementData.js @@ -0,0 +1,281 @@ +const elementsEn = [ + { + name: "Fire", + img: "/icons/magic/fire/projectile-fireball-smoke-orange.webp", + description: + "The spirit of fire granted the shinobis power of fiery storms and burning passion. The best element to deal damage", + isFusion: false, + fusion: [], + }, + { + name: "Water", + img: "/icons/magic/water/water-jet-wave-blue.webp", + description: + "The spirit of water granted the shinobis power of flowing rivers and calmness. A more versatile element that can be used for attack or defense", + isFusion: false, + fusion: [], + }, + { + name: "Wind", + img: "/icons/magic/air/air-burst-spiral-blue-gray.webp", + description: + "The spirit of wind granted the shinobis power of swift movements and sharpness. Useful to control the battlefield", + isFusion: false, + fusion: [], + }, + { + name: "Earth", + img: "/icons/magic/earth/explosion-lava-stone-yellow.webp", + description: + "The spirit of earth granted the shinobis power of solid defense and strength. The best element to protect yourself and others", + isFusion: false, + fusion: [], + }, + { + name: "Ice", + img: "/icons/magic/water/projectile-ice-faceted-gray.webp", + description: + "The spirit of ice granted the shinobis power of freezing cold. People in thoses jutsus have to throw a save check or be stuck in ice", + isFusion: true, + fusion: [ + { + type: "", //Water mongoId here + }, + { + type: "", //Wind mongoId here + }, + ], + }, + { + name: "Gravity", + img: "/icons/magic/control/debuff-chains-orb-movement-blue.webp", + description: + "The spirit of gravity granted the shinobis power of heavy force and attraction. People in thoses jutsus have to throw a save check or be pulled toward or pushed away from the jutsu", + isFusion: true, + fusion: [ + { + type: "", //Earth mongoId here + }, + { + type: "", //Wind mongoId here + }, + ], + }, + { + name: "Mud", + img: "/icons/magic/unholy/hand-weapon-glow-black-green.webp", + description: + "The spirit of mud granted the shinobis power of stickyness. People affected by thoses jutsus have half their movement speed for the turn", + isFusion: true, + fusion: [ + { + type: "", //Earth mongoId here + }, + { + type: "", //Water mongoId here + }, + ], + }, + { + name: "Geyser", + img: "/icons/magic/light/explosion-glow-spiral-yellow.webp", + description: + "The spirit of geyser granted the shinobis power of water eruption. People affected by thoses jutsus are pushed 3m up in the air", + isFusion: true, + fusion: [ + { + type: "", //Water mongoId here + }, + { + type: "", //Fire mongoId here + }, + ], + }, + { + name: "Steam", + img: "/icons/magic/light/orb-shadow-blue.webp", + description: + "The spirit of steam granted the shinobis power of hot water. Double the affected area of the jutsu", + isFusion: true, + fusion: [ + { + type: "", //Water mongoId here + }, + { + type: "", //Fire mongoId here + }, + ], + }, + { + name: "Magma", + img: "/icons/magic/light/explosion-beam-impact-silhouette.webp", + description: + "The spirit of magma granted the shinobis power of hot lava. Jutsus stay on the battlefield twice as long", + isFusion: true, + fusion: [ + { + type: "", //Fire mongoId here + }, + { + type: "", //Earth mongoId here + }, + ], + }, + { + name: "Wood", + img: "/icons/magic/nature/leaf-vine-plant-green.webp", + description: + "The spirit of wood granted the shinobis power of plant manipulation.", + isFusion: false, + fusion: [], + }, + { + name: "Lightning", + img: "/icons/magic/lightning/lightning-bolt-strike-ray.webp", + description: + "The spirit of lightning granted the shinobis power of electricity.", + isFusion: false, + fusion: [], + }, +]; + +const elementsFr = [ + { + name: "Feu", + img: "/icons/magic/fire/projectile-fireball-smoke-orange.webp", + description: + "L'esprit du feu a accordé aux shinobis le pouvoir des tempêtes ardentes et de la passion brûlante. Le meilleur élément pour infliger des dégâts", + isFusion: false, + fusion: [], + }, + { + name: "Eau", + img: "/icons/magic/water/water-jet-wave-blue.webp", + description: + "L'esprit de l'eau a accordé aux shinobis le pouvoir des rivières qui coulent et de la tranquillité. Un élément plus polyvalent qui peut être utilisé pour l'attaque ou la défense", + isFusion: false, + fusion: [], + }, + { + name: "Vent", + img: "/icons/magic/air/air-burst-spiral-blue-gray.webp", + description: + "L'esprit du vent a accordé aux shinobis le pouvoir des mouvements rapides et de la précision. Utile pour contrôler le champ de bataille", + isFusion: false, + fusion: [], + }, + { + name: "Terre", + img: "/icons/magic/earth/explosion-lava-stone-yellow.webp", + description: + "L'esprit de la terre a accordé aux shinobis le pouvoir d'une défense solide et de la force. Le meilleur élément pour se protéger soi-même et les autres", + isFusion: false, + fusion: [], + }, + { + name: "Glace", + img: "/icons/magic/water/projectile-ice-faceted-gray.webp", + description: + "L'esprit de la glace a accordé aux shinobis le pouvoir du froid glacial. Les personnes dans ces jutsus doivent lancer un jet de sauvegarde ou rester coincées dans la glace", + isFusion: true, + fusion: [ + { + type: "", //ID mongo de l'eau ici + }, + { + type: "", //ID mongo du vent ici + }, + ], + }, + { + name: "Gravité", + img: "/icons/magic/control/debuff-chains-orb-movement-blue.webp", + description: + "L'esprit de la gravité a accordé aux shinobis le pouvoir d'une force lourde et d'une attraction. Les personnes dans ces jutsus doivent lancer un jet de sauvegarde ou être attirées ou repoussées par le jutsu", + isFusion: true, + fusion: [ + { + type: "", //ID mongo de la terre ici + }, + { + type: "", //ID mongo du vent ici + }, + ], + }, + { + name: "Boue", + img: "/icons/magic/unholy/hand-weapon-glow-black-green.webp", + description: + "L'esprit de la boue a accordé aux shinobis le pouvoir de la viscosité. Les personnes affectées par ces jutsus ont la moitié de leur vitesse de déplacement pour le tour", + isFusion: true, + fusion: [ + { + type: "", //ID mongo de la terre ici + }, + { + type: "", //ID mongo de l'eau ici + }, + ], + }, + { + name: "Geyser", + img: "/icons/magic/light/explosion-glow-spiral-yellow.webp", + description: + "L'esprit du geyser a accordé aux shinobis le pouvoir de l'éruption d'eau. Les personnes affectées par ces jutsus sont propulsées à 3m dans les airs", + isFusion: true, + fusion: [ + { + type: "", //ID mongo de l'eau ici + }, + { + type: "", //ID mongo du feu ici + }, + ], + }, + { + name: "Vapeur", + img: "/icons/magic/light/orb-shadow-blue.webp", + description: + "L'esprit de la vapeur a accordé aux shinobis le pouvoir de l'eau chaude. Double la zone affectée par le jutsu", + isFusion: true, + fusion: [ + { + type: "", //ID mongo de l'eau ici + }, + { + type: "", //ID mongo du feu ici + }, + ], + }, + { + name: "Magma", + img: "/icons/magic/light/explosion-beam-impact-silhouette.webp", + description: + "L'esprit du magma a accordé aux shinobis le pouvoir de la lave chaude. Les jutsus restent sur le champ de bataille deux fois plus longtemps", + isFusion: true, + fusion: [ + { + type: "", //ID mongo du feu ici + }, + { + type: "", //ID mongo de la terre ici + }, + ], + }, + { + name: "Bois", + img: "/icons/magic/nature/leaf-vine-plant-green.webp", + description: + "L'esprit du bois a accordé aux shinobis le pouvoir de la manipulation des plantes.", + isFusion: false, + fusion: [], + }, + { + name: "Foudre", + img: "/icons/magic/lightning/lightning-bolt-strike-ray.webp", + description: + "L'esprit de la foudre a accordé aux shinobis le pouvoir de l'électricité.", + isFusion: false, + fusion: [], + }, +]; diff --git a/src/data/skillTypeData.js b/src/data/skillTypeData.js new file mode 100644 index 0000000..71917d7 --- /dev/null +++ b/src/data/skillTypeData.js @@ -0,0 +1,26 @@ +const skillTypesEn = [ + { + name: "Jutsu", + _skillId: 1, + }, + { + name: "Taijutsu", + _skillId: 2, + }, + { + name: "Gadget", + _skillId: 3, + }, + { + name: "Secret technique", + _skillId: 4, + }, + { + name: "Class skill", + _skillId: 5, + }, + { + name: "Archetype skill", + _skillId: 6, + }, +];