1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00
2024-12-19 11:52:36 +01:00

59 lines
860 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Delta Species'
const card: Card = {
name: {
en: "Eevee δ",
fr: "Evoli δ",
de: "Evoli"
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
133,
],
hp: 50,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Metal Scoop",
fr: "Pelle métallique",
de: "Metal Scoop"
},
effect: {
en: "Search your discard pile for a Metal Energy card and attach it to Eevee.",
fr: "Choisissez dans votre pile de défausse une carte Énergie et attachez-la à Evoli.",
de: "Search your discard pile for a Energy card and attach it to Eevee."
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card