1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-09 03:29:18 +00:00
Files
cards-database/data/Scarlet & Violet/Destined Rivals/105.ts
TCGdex 🤖 e03d66e150 feat: Variants for sv10 (#774)
Co-authored-by: Avior <git@avior.me>
2025-05-30 21:31:14 +00:00

57 lines
1.4 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Destined Rivals"
const card: Card = {
set: Set,
name: {
en: "Hippopotas",
fr: "Hippopotas",
de: "Hippopotas",
it: "Hippopotas",
es: "Hippopotas",
pt: "Hippopotas",
'es-mx': "Hippopotas"
},
rarity: "Common",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
en: "Push Down",
fr: "Recul",
de: "Runterdrücken",
it: "Spintonare",
es: "Oprimir",
pt: "Rebaixar",
'es-mx': "Oprimir"
},
effect: {
en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)",
fr: "Envoyez le Pokémon Actif de l'adversaire sur le Banc. (Votre adversaire choisit le nouveau Pokémon Actif.)",
de: "Wechsle das Aktive Pokémon deines Gegners auf seine Bank aus. (Dein Gegner wählt das neue Aktive Pokémon.)",
it: "Sposta il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo.",
es: "Mueve el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo).",
pt: "Mande o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.)",
'es-mx': "Mueve el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo)."
},
damage: 10
}],
retreat: 3,
regulationMark: "H",
variants: {
holo: false
}
}
export default card