1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 11:09:19 +00:00
Files
cards-database/data/Sword & Shield/Evolving Skies/54.ts

64 lines
929 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Mareep",
fr: "Wattouat",
es: "Mareep",
it: "Mareep",
pt: "Mareep",
de: "Voltilamm"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
stage: "Basic",
illustrator: "Yukiko Baba",
attacks: [{
name: {
en: "Rear Kick",
fr: "Ruade",
es: "Patada Trasera",
it: "Retrocalcio",
pt: "Rear Kick",
de: "Rückwärtskick"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
en: "Electro Ball",
fr: "Boule Élek",
es: "Bola Voltio",
it: "Energisfera",
pt: "Electro Ball",
de: "Elektroball"
},
damage: 30,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card