1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

78 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../FireRed & LeafGreen'
const card: Card = {
name: {
en: "Parasect",
fr: "Parasect",
de: "Parasek"
},
illustrator: "Yuka Morii",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
47,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Paras",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Energy Powder",
fr: "Poudre d'Énergie",
de: "Energiepuder"
},
effect: {
en: "Search your deck for up to 2 basic Energy cards and attach them to any of your Pokémon (excluding Pokémon-ex) in any way you like. Shuffle your deck afterward.",
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base et attachez-les aux Pokémon que vous voulez (sauf les Pokémon-ex) de la façon que vous voulez. Ensuite, mélangez votre deck.",
de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten und lege sie in beliebiger Verteilung an deine Pokémon (außer Pokémon-ex) an. Mische dein Deck danach."
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Toxic Spore",
fr: "Toxic Spore",
de: "Toxische Sporen"
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
de: "Das Verteidigende Pokémon ist jetzt vergiftet."
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card