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/160.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.5 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Destined Rivals"
const card: Card = {
set: Set,
name: {
en: "Squawkabilly",
fr: "Tapatoès",
de: "Krawalloro",
it: "Squawkabilly",
es: "Squawkabilly",
pt: "Squawkabilly",
'es-mx': "Squawkabilly"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Push Down",
fr: "Recul",
de: "Runterdrücken",
it: "Spintonare",
es: "Oprimir",
pt: "Rebaixar",
'es-mx': "Oprimir"
},
effect: {
en: "You may switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)",
fr: "Vous pouvez envoyer le Pokémon Actif de l'adversaire sur le Banc. (Votre adversaire choisit le nouveau Pokémon Actif.)",
de: "Du kannst das Aktive Pokémon deines Gegners auf seine Bank auswechseln. (Dein Gegner wählt das neue Aktive Pokémon.)",
it: "Puoi spostare il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo.",
es: "Puedes mover el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo).",
pt: "Você pode mandar o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.)",
'es-mx': "Puedes mover el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo)."
},
damage: 20
}],
retreat: 1,
regulationMark: "I",
variants: {
holo: false
}
}
export default card