1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

67 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Unified Minds'
const card: Card = {
name: {
en: "Azelf",
fr: "Créfadet",
es: "Azelf",
it: "Azelf",
pt: "Azelf",
de: "Tobutz"
},
illustrator: "Mizue",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
482,
],
hp: 70,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Psypower",
fr: "Puissance Psy",
es: "Psicopoder",
it: "Psicotere",
pt: "Poder Psíquico",
de: "Psy-Power"
},
effect: {
en: "Put 3 damage counters on your opponents Pokémon in any way you like.",
fr: "Placez 3 marqueurs de dégâts sur les Pokémon de votre adversaire, de la manière que vous voulez.",
es: "Pon 3 contadores de daño en los Pokémon de tu rival de la manera que desees.",
it: "Distribuisci a piacimento tre segnalini danno sui Pokémon del tuo avversario.",
pt: "Coloque 3 contadores de dano nos Pokémon do seu oponente como desejar.",
de: "Lege 3 Schadensmarken beliebig auf die Pokémon deines Gegners."
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card