mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
93 lines
1.5 KiB
TypeScript
93 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Arceus'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Probopass",
|
|
de: "Voluminas"
|
|
},
|
|
illustrator: "Kouki Saitou",
|
|
rarity: "Rare Holo",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
476,
|
|
],
|
|
|
|
types: [
|
|
"Metal",
|
|
],
|
|
evolveFrom: {
|
|
en: "Nosepass",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
abilities: [
|
|
{
|
|
type: "Poke-BODY",
|
|
name: {
|
|
en: "Competitiveness",
|
|
de: "Konkurrenzdenken"
|
|
},
|
|
effect: {
|
|
en: "If you don't have a Supporter card in play, each of Probopass's attacks does 30 more damage to the Active Pokémon (before applying Weakness and Resistance).",
|
|
de: "Wenn du keine Unterstützerkarte im Spiel hast, fügen alle Angriffe von Voluminas den Aktiven Pokémon 30 weitere Schadenspunkte zu (bevor Schwäche und Resistenz verrechnet werden)."
|
|
},
|
|
},
|
|
],
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Metal",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Top Chop",
|
|
de: "Ziehschlag"
|
|
},
|
|
effect: {
|
|
en: "Draw a card.",
|
|
de: "Ziehe 1 Karte."
|
|
},
|
|
damage: 30,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Metal",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Tumbling Attack",
|
|
de: "Sturzangriff"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 50 damage plus 30 more damage.",
|
|
de: "Wirf 1 Münze. Bei \"Kopf\" fügt dieser Angriff 50 Schadenspunkte plus 30 weitere Schadenspunkte zu."
|
|
},
|
|
damage: "50+",
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+20"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Psychic",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 3,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|