1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

80 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 '../Team Rocket Returns'
const card: Card = {
name: {
en: "Dark Weezing",
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
110,
],
hp: 80,
types: [
"Grass",
"Darkness",
],
evolveFrom: {
en: "Koffing",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Methane Leak",
},
effect: {
en: "As long as Dark Weezing is your Active Pokémon, put 1 damage counter on each Pokémon that remains Poisoned between turns.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Smog",
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
},
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Darkness Charge",
},
effect: {
en: "Put 2 damage counters on Dark Weezing.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card