1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00
Florian Bouillon 90ebef01cf Added more Evolving Skies data
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-08-27 11:02:14 +02:00

72 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Eevee",
fr: "Évoli",
es: "Eevee",
it: "Eevee",
pt: "Eevee",
de: "Evoli"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
stage: "Basic",
illustrator: "Atsushi Furusawa",
attacks: [{
name: {
en: "Vee-Search",
fr: "Vé-Chercher",
es: "Vee por V",
it: "Cerca V",
pt: "Vee-Search",
de: "V-Suche"
},
effect: {
en: "Search your deck for up to 3 Pokémon V, reveal them, and put them into your hand. Then, shuffle your deck.",
fr: "Cherchez dans votre deck jusquà 3 Pokémon-V, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
es: "Busca en tu baraja hasta 3 Pokémon V, enséñalos y ponlos en tu mano. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a tre Pokémon-V, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Search your deck for up to 3 Pokémon V, reveal them, and put them into your hand. Then, shuffle your deck.",
de: "Durchsuche dein Deck nach bis zu 3 Pokémon-V, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
cost: ["Colorless"]
}, {
name: {
en: "Stampede",
fr: "Ruée",
es: "Estampida",
it: "Fuggi Fuggi",
pt: "Stampede",
de: "Zertrampeln"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card