1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 20:09:55 +00:00

41 lines
586 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Surging Sparks"
const card: Card = {
set: Set,
name: {
en: "Marill",
fr: "Marill",
es: "Marill",
it: "Marill",
pt: "Marill",
de: "Marill"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
en: "Rolling Tackle",
fr: "Roulé-Boulé",
es: "Placaje Giro",
it: "Rollazione",
pt: "Golpe de Colisão Rolante",
de: "Rolltackle"
},
damage: 20
}],
retreat: 1,
regulationMark: "H"
}
export default card