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:
67
data/Sword & Shield/Astral Radiance/106.ts
Normal file
67
data/Sword & Shield/Astral Radiance/106.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Magneton",
|
||||
fr: "Magnéton",
|
||||
es: "Magneton",
|
||||
it: "Magneton",
|
||||
pt: "Magneton",
|
||||
de: "Magneton"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Metal"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Magnemite",
|
||||
fr: "Magnéti",
|
||||
es: "Magnemite",
|
||||
it: "Magnemite",
|
||||
pt: "Magnemite",
|
||||
de: "Magnetilo"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Bounce Back",
|
||||
fr: "Retour à l'Envoyeur",
|
||||
es: "Recuperarse",
|
||||
it: "Rimbalzo Indietro",
|
||||
pt: "Ricochete de Retrocesso",
|
||||
de: "Zurückprallen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
|
||||
fr: "Votre adversaire échange son Pokémon Actif contre l'un de ses Pokémon de Banc.",
|
||||
es: "Tu rival cambia su Pokémon Activo por 1 de sus Pokémon en Banca.",
|
||||
it: "Il tuo avversario scambia il suo Pokémon attivo con uno della sua panchina.",
|
||||
pt: "Seu oponente troca o próprio Pokémon Ativo por 1 dos Pokémon no Banco dele(a).",
|
||||
de: "Dein Gegner tauscht sein Aktives Pokémon gegen 1 Pokémon auf seiner Bank aus."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user