1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +00:00

73 lines
1.2 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 '../Undaunted'
const card: Card = {
name: {
en: "Vileplume",
fr: "Rafflesia",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
45,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Gloom",
fr: "Ortide",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Allergy Flower",
fr: "Fleur allergène",
},
effect: {
en: "Each player can't play any Trainer cards from his or her hand.",
fr: "Aucun joueur ne peut jouer de carte Dresseur de sa main.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Dazzling Pollen",
fr: "Pollen étincelant",
},
effect: {
en: "Flip a coin. If heads, this attack does 50 damage plus 20 more damage. If tails, the Defending Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires. Si c'est pile, le Pokémon Défenseur est maintenant Confus.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card