1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00

65 lines
885 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 '../Promos'
const card: Card = {
name: {
en: "Weezing",
},
illustrator: "TOKIYA",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
110,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Koffing",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Levitate",
},
effect: {
en: "If this Pokémon has any Energy attached to it, this Pokémon has no Retreat Cost.",
},
},
],
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Smokescreen",
},
effect: {
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card