1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

73 lines
1.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",
},
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",
},
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.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "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.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card