1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

feat: Add Paradox Rift (#464)

This commit is contained in:
2024-01-03 03:34:52 +01:00
committed by GitHub
parent 7fe2f0283c
commit b333423c5d
267 changed files with 15494 additions and 5 deletions

View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
set: Set,
name: {
en: "Whismur",
fr: "Chuchmur",
es: "Whismur",
it: "Whismur",
pt: "Whismur",
de: "Flurmel"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Push Down",
fr: "Recul",
es: "Oprimir",
it: "Spintonare",
pt: "Rebaixar",
de: "Runterdrücken"
},
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.)",
es: "Mueve el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo).",
it: "Sposta il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo.",
pt: "Mande o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.)",
de: "Wechsle das Aktive Pokémon deines Gegners auf seine Bank aus. (Dein Gegner wählt das neue Aktive Pokémon.)"
},
damage: 10
}],
retreat: 2,
regulationMark: "G"
}
export default card