mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
96 lines
2.2 KiB
TypeScript
96 lines
2.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Steam Siege'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Probopass",
|
||
fr: "Tarinorme",
|
||
es: "Probopass",
|
||
it: "Probopass",
|
||
pt: "Probopass",
|
||
de: "Voluminas"
|
||
},
|
||
illustrator: "MAHOU",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
476,
|
||
],
|
||
hp: 120,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
evolveFrom: {
|
||
en: "Nosepass",
|
||
fr: "Tarinor",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
],
|
||
name: {
|
||
en: "Bounce Back",
|
||
fr: "Retour à l’Envoyeur",
|
||
es: "Recuperarse",
|
||
it: "Rimbalzo Indietro",
|
||
pt: "Ricochete de Retrocesso",
|
||
de: "Zurückprallen"
|
||
},
|
||
effect: {
|
||
en: "Your opponent switches his or her Active Pokémon with 1 of his or her Benched Pokémon.",
|
||
fr: "Votre adversaire échange son Pokémon Actif avec l’un de ses Pokémon de Banc.",
|
||
es: "Tu rival cambia su Pokémon Activo por 1 de sus Pokémon en Banca.",
|
||
it: "Il tuo avversario scambia il suo Pokémon attivo con uno dei suoi Pokémon in panchina.",
|
||
pt: "Seu oponente troca o próprio Pokémon Ativo por 1 dos Pokémon no Banco dele(a).",
|
||
de: "Dein Gegner tauscht sein Aktives Pokémon gegen 1 Pokémon auf seiner Bank aus."
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Rock Tomb",
|
||
fr: "Tomberoche",
|
||
es: "Tumba Rocas",
|
||
it: "Rocciotomba",
|
||
pt: "Tumba de Rochas",
|
||
de: "Felsgrab"
|
||
},
|
||
effect: {
|
||
en: "The Defending Pokémon can’t retreat during your opponent’s next turn.",
|
||
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
|
||
es: "El Pokémon Defensor no puede retirarse durante el próximo turno de tu rival.",
|
||
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
|
||
pt: "O Pokémon Defensor não poderá recuar durante a próxima vez de jogar do seu oponente.",
|
||
de: "Das Verteidigende Pokémon kann sich während des nächsten Zuges deines Gegners nicht zurückziehen."
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 4,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|