mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Added Lost Origin datas (#360)
This commit is contained in:
77
data/Sword & Shield/Lost Origin/TG16.ts
Normal file
77
data/Sword & Shield/Lost Origin/TG16.ts
Normal file
@ -0,0 +1,77 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pikachu V",
|
||||
fr: "Pikachu V",
|
||||
es: "Pikachu V",
|
||||
it: "Pikachu V",
|
||||
pt: "Pikachu V",
|
||||
de: "Pikachu V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 190,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning"],
|
||||
|
||||
name: {
|
||||
en: "Charge",
|
||||
fr: "Chargeur",
|
||||
es: "Carga",
|
||||
it: "Sottocarica",
|
||||
pt: "Carga",
|
||||
de: "Ladevorgang"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for up to 2 Lightning Energy cards and attach them to this Pokémon. Then, shuffle your deck.",
|
||||
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Lightning, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck.",
|
||||
es: "Busca en tu baraja hasta 2 cartas de Energía Lightning y únelas a este Pokémon. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo fino a due carte Energia Lightning e assegnale a questo Pokémon. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por até 2 cartas de Energia Lightning no seu baralho e ligue-as a este Pokémon. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach bis zu 2 Lightning-Energiekarten und lege sie an dieses Pokémon an. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Lightning", "Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Thunderbolt",
|
||||
fr: "Tonnerre",
|
||||
es: "Rayo",
|
||||
it: "Fulmine",
|
||||
pt: "Relâmpago",
|
||||
de: "Donnerblitz"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard all Energy from this Pokémon.",
|
||||
fr: "Défaussez toute l'Énergie de ce Pokémon.",
|
||||
es: "Descarta todas las Energías de este Pokémon.",
|
||||
it: "Scarta tutte le Energie da questo Pokémon.",
|
||||
pt: "Descarte todas as Energias deste Pokémon.",
|
||||
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 200
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "D",
|
||||
|
||||
variants: {
|
||||
"normal": false,
|
||||
"reverse": false,
|
||||
"holo": true
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user