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:
87
data/Sword & Shield/Astral Radiance/013.ts
Normal file
87
data/Sword & Shield/Astral Radiance/013.ts
Normal file
@ -0,0 +1,87 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Leafeon",
|
||||
fr: "Phyllali",
|
||||
es: "Leafeon",
|
||||
it: "Leafeon",
|
||||
pt: "Leafeon",
|
||||
de: "Folipurba"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
fr: "Évoli",
|
||||
es: "Eevee",
|
||||
it: "Eevee",
|
||||
pt: "Eevee",
|
||||
de: "Evoli"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Energy Garden",
|
||||
fr: "Jardin d'Énergie",
|
||||
es: "Jardín de Energía",
|
||||
it: "Giardino di Energia",
|
||||
pt: "Jardim de Energia",
|
||||
de: "Energiegarten"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for up to 3 basic Energy cards of different types and attach them to your Pokémon in any way you like. Then, shuffle your deck.",
|
||||
fr: "Cherchez dans votre deck jusqu'à 3 cartes Énergie de base de types différents, puis attachez-les à vos Pokémon comme il vous plaît. Mélangez ensuite votre deck.",
|
||||
es: "Busca en tu baraja hasta 3 cartas de Energía Básica de diferentes tipos y únelas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo fino a tre carte Energia base di tipo diverso e assegnale ai tuoi Pokémon nel modo che preferisci. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por até 3 cartas de Energia básica de tipos diferentes no seu baralho e ligue-as aos seus Pokémon como desejar. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach bis zu 3 Basis-Energiekarten verschiedenen Typs und lege sie beliebig an deine Pokémon an. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Grass", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Leafy Cyclone",
|
||||
fr: "Cyclone Arboré",
|
||||
es: "Ciclón Hojarasca",
|
||||
it: "Fogliaturbine",
|
||||
pt: "Ciclone Folhoso",
|
||||
de: "Blättergewirbel"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon can't attack.",
|
||||
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
||||
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
||||
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
||||
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
||||
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user