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

89 lines
2.0 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 '../Neo Destiny'
const card: Card = {
name: {
en: "Light Venomoth",
fr: "Aéromite lumineux",
de: "Helles Omot"
},
illustrator: "Masako Yamashita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
49,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Venonat",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Mysterious Wing",
fr: "Aile mystérieuse",
de: "Mysterious Wing"
},
effect: {
en: "Your opponent may choose a Baby Pokémon, Basic Pokémon, or Evolution card from his or her discard pile and put it into his or her hand. Either way, you may do the same.",
fr: "Votre adversaire peut choisir une carte Bébé Pokémon, Pokémon de base ou Évolution de sa pile de défausse et l'ajouter à sa main. Quelle que soit sa décision, vous pouvez faire de même.",
de: "Your opponent may choose a Baby Pokémon, Basic Pokémon, or Evolution card from his or her discard pile and put it into his or her hand. Either way, you may do the same."
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Synchronize",
fr: "Synchronisation",
de: "Synchronize"
},
effect: {
en: "If Light Venomoth and the Defending Pokémon have a different number of Energy cards attached to them, this attack does nothing.",
fr: "Si Aéromite lumineux et le Pokémon Défenseur ont un nombre différent de cartes Énergie attachées à eux, cette attaque ne fait rien.",
de: "If Light Venomoth and the Defending Pokémon have a differenz number of Energy cards attached to them, this attack does nothing."
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
description: {
fr: "Il se défend en battant des ailes à toute vitesse, libérant une poudre empoisonnée dans les airs."
}
}
export default card