1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00

feat: Add Astral Radiance (#305)

This commit is contained in:
2022-05-27 01:49:58 +02:00
committed by GitHub
parent a006f77bf4
commit 91865f7f02
247 changed files with 16466 additions and 0 deletions

View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../Astral Radiance"
const card: Card = {
set: Set,
name: {
en: "Azelf",
fr: "Créfadet",
es: "Azelf",
it: "Azelf",
pt: "Azelf",
de: "Tobutz"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
en: "Mind Bend",
fr: "Contrôleur d'Esprit",
es: "Fusión Mental",
it: "Fusione Mentale",
pt: "Dobra Mentes",
de: "Gedankenverbiegung"
},
effect: {
en: "Your opponent's Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
it: "Il Pokémon attivo del tuo avversario viene confuso.",
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
},
damage: 30
}],
retreat: 1,
regulationMark: "F",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card