1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-14 05:45:10 +00:00

feat: Add sv10 - Destined Rivals (#751)

This commit is contained in:
2025-05-30 22:30:18 +02:00
committed by GitHub
parent 51da484016
commit 2d5cf729c8
245 changed files with 14806 additions and 0 deletions

View File

@ -0,0 +1,53 @@
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"
}
export default card