1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00

67 lines
949 B
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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Venomoth",
},
illustrator: "Mina Nakai",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
49,
],
hp: 90,
types: [
"Grass",
],
evolveFrom: {
en: "Venonat",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Assassin Flight",
},
effect: {
en: "You can use this attack only if your opponent's Active Pokémon is affected by a Special Condition. This attack does 90 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},
{
cost: [
"Grass",
],
name: {
en: "Poison Powder",
},
effect: {
en: "Your opponent's Active Pokémon is now Poisoned.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card