1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

68 lines
889 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 '../Ruby & Sapphire'
const card: Card = {
name: {
en: "Weezing",
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
110,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Koffing",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Confusion Gas",
},
effect: {
en: "The Defending Pokémon is now Confused.",
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Poison Smog",
},
effect: {
en: "Each Defending Pokémon is now Poisoned. Does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card