mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-08 10:17:50 +00:00
78 lines
1.2 KiB
TypeScript
78 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Majestic Dawn'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Hippopotas",
|
|
fr: "Hippopotas",
|
|
de: "Hippopotas"
|
|
},
|
|
illustrator: "Kent Kanetsuna",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
449,
|
|
],
|
|
hp: 60,
|
|
types: [
|
|
"Fighting",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
],
|
|
name: {
|
|
en: "Grainy Sand",
|
|
fr: "Sable graineux",
|
|
de: "Grober Sand"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.",
|
|
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 10 dégâts supplémentaires.",
|
|
de: "Wirf 1 Münze. Bei 'Kopf' fügt dieser Angriff 10 Schadenspunkte plus 10 weitere Schadenspunkte zu."
|
|
},
|
|
damage: "10+",
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Double-edge",
|
|
fr: "Damoclès",
|
|
de: "Risikotackle"
|
|
},
|
|
effect: {
|
|
en: "Hippopotas does 10 damage to itself.",
|
|
fr: "Hippopotas s'inflige 10 dégâts.",
|
|
de: "Hippopotas fügt sich selbst 10 Schadenspunkte zu."
|
|
},
|
|
damage: 40,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
retreat: 2,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|