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

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

85
data/Platinum/Arceus/7.ts Normal file
View File

@ -0,0 +1,85 @@
import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Probopass",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
476,
],
types: [
"Metal",
],
evolveFrom: {
en: "Nosepass",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Competitiveness",
},
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).",
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Top Chop",
},
effect: {
en: "Draw a card.",
},
damage: 30,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Tumbling Attack",
},
effect: {
en: "Flip a coin. If heads, this attack does 50 damage plus 30 more damage.",
},
damage: "50+",
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card