mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 04:42:11 +00:00
77 lines
2.0 KiB
TypeScript
77 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Holon Phantoms'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Vileplume δ",
|
||
fr: "Rafflesia δ",
|
||
de: "Giflor"
|
||
},
|
||
illustrator: "Mitsuhiro Arita",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
45,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Psychic",
|
||
"Metal",
|
||
],
|
||
evolveFrom: {
|
||
en: "Gloom",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-POWER",
|
||
name: {
|
||
en: "Poison Pollen",
|
||
fr: "Pollen toxik",
|
||
de: "Gift-Pollen"
|
||
},
|
||
effect: {
|
||
en: "Once during your turn (before your attack), you may flip a coin. If heads, choose 1 of the Defending Pokémon. That Pokémon is now Poisoned. This power can't be used if Vileplume is affected by a Special Condition.",
|
||
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez lancer une pièce. Si c'est face, choisissez 1 des Pokémon Défenseurs. Ce Pokémon est maintenant Empoisonné. Ce pouvoir ne peut pas être utilisé si Rafflesia est affecté par un État Spécial.",
|
||
de: "Einmal während deines Zuges (vor deinem Angriff) wirf 1 Münze. Bei \"Kopf\" wähle 1 Verteidigendes Pokémon. Dieses Pokémon ist jetzt vergiftet. Diese Poké-Power kann nicht benutzt werden, wenn Giflor von einem Speziellen Zustand betroffen ist."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Metal",
|
||
],
|
||
name: {
|
||
en: "Poltergeist",
|
||
fr: "Poltergeist",
|
||
de: "Poltergeist"
|
||
},
|
||
effect: {
|
||
en: "Look at your opponent's hand. This attack does 30 damage plus 10 more damage for each Trainer card in your opponent's hand.",
|
||
fr: "Regardez la main de votre adversaire. Cette attaque inflige 30 dégâts plus 10 dégâts supplémentaires pour chaque carte Dresseur dans la main de votre adversaire.",
|
||
de: "Schau dir die Handkarten deines Gegners an. Dieser Angriff fügt 30 Schadenspunkte plus 10 weitere Schadenspunkte für jede Trainerkarte auf der Hand deines Gegners zu."
|
||
},
|
||
damage: "30+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|