mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Sword & Shield Fixes (#84)
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
This commit is contained in:
@ -5,32 +5,52 @@ const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Pikachu V"
|
||||
fr: "Pikachu V",
|
||||
en: "Pikachu V",
|
||||
es: "Pikachu V",
|
||||
it: "Pikachu V",
|
||||
de: "Pikachu V"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Tsuji",
|
||||
rarity: "Common",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 190,
|
||||
types: ["Lightning"],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
fr: "Chargeur"
|
||||
fr: "Chargeur",
|
||||
en: "Charge",
|
||||
es: "Carga",
|
||||
it: "Sottocarica",
|
||||
de: "Ladevorgang"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Cherchez dans votre deck jusqu’à 2 cartes Énergie Lightning, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck."
|
||||
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Lightning, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck.",
|
||||
en: "Search your deck for up to 2 Lightning Energy cards and attach them to this Pokémon. Then, shuffle your 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.",
|
||||
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"]
|
||||
}, {
|
||||
name: {
|
||||
fr: "Tonnerre"
|
||||
fr: "Tonnerre",
|
||||
en: "Thunderbolt",
|
||||
es: "Rayo",
|
||||
it: "Fulmine",
|
||||
de: "Donnerblitz"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Défaussez toute l’Énergie de ce Pokémon."
|
||||
fr: "Défaussez toute l'Énergie de ce Pokémon.",
|
||||
en: "Discard all Energy from this Pokémon.",
|
||||
es: "Descarta todas las Energías de este Pokémon.",
|
||||
it: "Scarta tutte le Energie da questo Pokémon.",
|
||||
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 200,
|
||||
@ -42,7 +62,19 @@ const card: Card = {
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
retreat: 1,
|
||||
stage: "Basic",
|
||||
dexId: [25],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
regulationMark: "D",
|
||||
suffix: "V"
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user