mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
62 lines
956 B
TypeScript
62 lines
956 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Astral Radiance"
|
|
|
|
const card: Card = {
|
|
dexId: [449],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Hippopotas",
|
|
fr: "Hippopotas",
|
|
es: "Hippopotas",
|
|
it: "Hippopotas",
|
|
pt: "Hippopotas",
|
|
de: "Hippopotas"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Mud-Slap",
|
|
fr: "Coud'Boue",
|
|
es: "Bofetón Lodo",
|
|
it: "Fangosberla",
|
|
pt: "Tapa de Lama",
|
|
de: "Lehmschelle"
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Fighting", "Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Rolling Tackle",
|
|
fr: "Roulé-Boulé",
|
|
es: "Placaje Giro",
|
|
it: "Rollazione",
|
|
pt: "Golpe de Colisão Rolante",
|
|
de: "Rolltackle"
|
|
},
|
|
|
|
damage: 90
|
|
}],
|
|
|
|
retreat: 4,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |