1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 20:36:15 +00:00

81 lines
1.6 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Platinum'
const card: Card = {
name: {
en: "Probopass",
fr: "Tarinorme",
de: "Voluminas"
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
476,
],
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Nosepass",
fr: "Tarinor",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Stealth Rock",
fr: "Piège de Roc",
de: "Stealth Rock"
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez 1 des Pokémon de votre adversaire. Cette attaque lui inflige 30 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
de: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
},
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Hyper Beam",
fr: "Ultralaser",
de: "Hyper Beam"
},
effect: {
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur.",
de: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon."
},
damage: 70,
},
],
weaknesses: [
{
type: "Water",
value: "+20"
},
],
retreat: 3,
}
export default card