1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 13:59:55 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

65 lines
954 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Majestic Dawn'
const card: Card = {
name: {
en: "Eevee",
fr: "Evoli",
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
133,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
name: {
en: "Gnaw",
fr: "Rogne",
},
damage: 10,
},
{
cost: [
"Colorless",
],
name: {
en: "Sand Attack",
fr: "Jet de sable",
},
effect: {
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
fr: "Si le Pokémon Défenseur essaye d'attaquer lors du prochain tour de votre adversaire, celui-ci lance une pièce. Si c'est pile, cette attaque est sans effet.",
},
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
retreat: 1,
}
export default card