1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

46 lines
577 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Stellar Crown"
const card: Card = {
set: Set,
name: {
en: "Marill",
fr: "Marill",
es: "Marill",
it: "Marill",
pt: "Marill",
de: "Marill"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Rollout",
fr: "Roulade",
es: "Rodar",
it: "Rotolamento",
pt: "Rolagem",
de: "Walzer"
},
damage: 10
}],
retreat: 1,
regulationMark: "H",
variants: {
holo: false
}
}
export default card