1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

93 lines
1.7 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",
de: "Giflor"
},
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",
de: "Allergieblume"
},
effect: {
en: "Each player cant play any Trainer cards from his or her hand.",
fr: "Aucun joueur ne peut jouer de carte Dresseur de sa main.",
de: "Kein Spieler darf Trainerkarten von seiner Hand spielen."
},
},
],
attacks: [
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Dazzling Pollen",
fr: "Pollen étincelant",
de: "Verwirrpollen"
},
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 cest face, cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires. Si cest pile, le Pokémon Défenseur est maintenant Confus.",
de: "Wirf eine Münze. Bei \"Kopf\" fügt dieser Angriff 50 Schadenspunkte plus 20 weitere Schadenspunkte zu. Bei \"Zahl\" ist das Verteidigende Pokémon jetzt verwirrt."
},
damage: "50+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
description: {
en: "It has the worlds largest petals. With every step, the petals shake out heavy clouds of toxic pollen."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card