1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,66 @@
import { Card } from '../../../interfaces'
import Set from '../Yellow A Alternate'
const card: Card = {
name: {
en: "Eevee",
fr: "Évoli",
},
illustrator: "kirisAki",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
133,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Energy Evolution",
fr: "Évolution de l'Énergie",
},
effect: {
en: "When you attach a basic Energy card from your hand to this Pokémon during your turn, you may search your deck for a card that evolves from this Pokémon that is the same type as that Energy card and put it onto this Pokémon to evolve it. Then, shuffle your deck.",
fr: "Lorsque vous attachez pendant votre tour une carte Énergie de base de votre main à ce Pokémon, vous pouvez chercher dans votre deck une carte qui est lévolution de ce Pokémon et du même type que cette carte Énergie. Mettez-la sur ce Pokémon pour le faire évoluer. Mélangez ensuite votre deck.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Quick Draw",
fr: "Pioche Rapide",
},
effect: {
en: "Flip a coin. If heads, draw a card.",
fr: "Lancez une pièce. Si cest face, piochez une carte.",
},
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 2,
}
export default card