mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
feat: Add Astral Radiance (#305)
This commit is contained in:
80
data/Sword & Shield/Astral Radiance/057.ts
Normal file
80
data/Sword & Shield/Astral Radiance/057.ts
Normal file
@ -0,0 +1,80 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Togekiss",
|
||||
fr: "Togekiss",
|
||||
es: "Togekiss",
|
||||
it: "Togekiss",
|
||||
pt: "Togekiss",
|
||||
de: "Togekiss"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Togetic",
|
||||
fr: "Togetic",
|
||||
es: "Togetic",
|
||||
it: "Togetic",
|
||||
pt: "Togetic",
|
||||
de: "Togetic"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Shine of Happiness",
|
||||
fr: "Rayonnement de Joie",
|
||||
es: "Brillo de Felicidad",
|
||||
it: "Bagliore di Felicità",
|
||||
pt: "Brilho da Alegria",
|
||||
de: "Glanz der Freude"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may heal 90 damage from your Active Pokémon.",
|
||||
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez soigner 90 dégâts de votre Pokémon Actif.",
|
||||
es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a 1 de tus Pokémon durante tu turno, puedes curar 90 puntos de daño a tu Pokémon Activo.",
|
||||
it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi curare il tuo Pokémon attivo da 90 danni.",
|
||||
pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá curar 90 pontos de dano do seu Pokémon Ativo.",
|
||||
de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du 90 Schadenspunkte bei deinem Aktiven Pokémon heilen."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Magical Shot",
|
||||
fr: "Coup Magique",
|
||||
es: "Disparo Mágico",
|
||||
it: "Magicolpo",
|
||||
pt: "Tiro Mágico",
|
||||
de: "Magischer Schuss"
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: true,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user