mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
61 lines
885 B
TypeScript
61 lines
885 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
dexId: [179],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Mareep",
|
|
fr: "Wattouat",
|
|
es: "Mareep",
|
|
it: "Mareep",
|
|
pt: "Mareep",
|
|
de: "Voltilamm"
|
|
},
|
|
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Lightning"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Rear Kick",
|
|
fr: "Ruade",
|
|
es: "Patada Trasera",
|
|
it: "Retrocalcio",
|
|
pt: "Chute Traseiro",
|
|
de: "Rückwärtskick"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Lightning", "Colorless"],
|
|
|
|
name: {
|
|
en: "Electro Ball",
|
|
fr: "Boule Élek",
|
|
es: "Bola Voltio",
|
|
it: "Energisfera",
|
|
pt: "Bola Elétrica",
|
|
de: "Elektroball"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |