1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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

View File

@ -0,0 +1,80 @@
import { Card } from '../../../interfaces'
import Set from '../Primal Clash'
const card: Card = {
name: {
en: "Probopass",
fr: "Tarinorme",
},
illustrator: "TOKIYA",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
476,
],
hp: 110,
types: [
"Metal",
],
evolveFrom: {
en: "Nosepass",
fr: "Tarinor",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Triple Smash",
fr: "Triple Éclate",
},
effect: {
en: "Flip 3 coins. This attack does 30 damage times the number of heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.",
},
damage: 30,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Reinforced Nose",
fr: "Nez Renforcé",
},
effect: {
en: "If this Pokémon has a Pokémon Tool card attached to it, this attack does 50 more damage.",
fr: "Si une carte Outil Pokémon est attachée à ce Pokémon, cette attaque inflige 50 dégâts supplémentaires.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card