mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 14:59:19 +00:00
59 lines
871 B
TypeScript
59 lines
871 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Scarlet & Violet"
|
|
|
|
const card: Card = {
|
|
dexId: [179],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Mareep",
|
|
fr: "Wattouat",
|
|
es: "Mareep",
|
|
it: "Mareep",
|
|
pt: "Mareep",
|
|
de: "Voltilamm"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Lightning"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Lightning"],
|
|
|
|
name: {
|
|
en: "Static Shock",
|
|
fr: "Choc Statique",
|
|
es: "Impacto Estático",
|
|
it: "Shock Statico",
|
|
pt: "Choque de Estática",
|
|
de: "Statischer Schock"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Lightning", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Electro Ball",
|
|
fr: "Boule Élek",
|
|
es: "Bola Voltio",
|
|
it: "Energisfera",
|
|
pt: "Bola Elétrica",
|
|
de: "Elektroball"
|
|
},
|
|
|
|
damage: 40
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |