1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 8ef099273e
fix: Add E-Card French Translations (#166)
* fix: Add E-Card French Translations

Signed-off-by: Avior <github@avior.me>

* fix: Fixed Cards without rarity

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-11-22 19:07:35 +00:00

74 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Expedition Base Set'
const card: Card = {
name: {
en: "Alakazam",
fr: "Alakazam"
},
illustrator: "Hajime Kusajima",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
65,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Kadabra",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Psymimic",
fr: "Psymitation"
},
effect: {
en: "Once during your turn, instead of Alakazam's normal attack, you may choose 1 of your opponent's Pokémon's attack. Alakazam copies that attack including its Energy costs and anything else required in order to use that attack, such as discarding Energy cards. (No matter what type that Pokémon is, Alakazam's type is still Psychic.) This power can't be used if Alakazam is affected by a Special Condition.",
fr: "Une seule fois pendant votre tour, à la place de l'attaque normale d'Alakazam, vous pouvez choisir une attaque d'un des Pokémon de votre adversaire. Alakazam copie cette attaque, y compris son coût d'Énergie et toute autre action requise pour utiliser cette attaque, comme par exemple, se défausser de cartes Énergie. (Quel que soit le type de l'autre Pokémon, Alakazam est toujours de type Psy.) Ce pouvoir ne peut pas être utilisé si Alakazam est affecté par un État spécial."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Syncroblast",
fr: "Syncroblast"
},
effect: {
en: "If Alakazam and the Defending Pokémon don't have the same number of Energy cards on them, this attack's base damage is 20 instead of 80.",
fr: "Si Alakazam et le Pokémon Défenseur n'ont pas le même nombre de cartes Énergie attachées à eux, cette attaque inflige 20 dégâts de base au lieu de 80."
},
damage: 80
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card