1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

96 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 à lEnvoyeur",
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 lun 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 cant retreat during your opponents 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