1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 21:49:53 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

75 lines
1.2 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 '../Plasma Blast'
const card: Card = {
name: {
en: "Azelf",
fr: "Créfadet",
es: "Azelf",
it: "Azelf",
pt: "Azelf",
de: "Tobutz"
},
illustrator: "Naoyo Kimura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
482,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Trading Places",
fr: "Permutation",
},
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Échangez ce Pokémon avec 1 de vos Pokémon de Banc.",
},
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Psyjamming",
fr: "Distribution Psy",
},
effect: {
en: "Move as many Special Energy attached to your opponent's Pokémon to your opponent's other Pokémon in any way you like.",
fr: "Déplacez autant d'Énergies spéciales attachées aux Pokémon de votre adversaire vers d'autres Pokémon de votre adversaire, de la manière que vous voulez.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card