1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 18:27:51 +00:00

72 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Team Up'
const card: Card = {
name: {
en: "Parasect",
fr: "Parasect",
},
illustrator: "Satoshi Shirai",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
47,
],
hp: 100,
types: [
"Grass",
],
evolveFrom: {
en: "Paras",
fr: "Paras",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Panic Spores",
fr: "Spores en Panique",
},
effect: {
en: "Put 2 damage counters on your opponent's Confused Pokémon between turns.",
fr: "Placez 2 marqueurs de dégâts sur le Pokémon Confus de votre adversaire entre chaque tour.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Mysterious Powder",
fr: "Poudre Mystérieuse",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Confused.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Confus.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card