mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
69 lines
910 B
TypeScript
69 lines
910 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Gym Challenge'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Rocket's Zapdos",
|
|
},
|
|
illustrator: "Shin-ichi Yoshida",
|
|
rarity: "Rare Holo",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
145,
|
|
],
|
|
hp: 70,
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
],
|
|
name: {
|
|
en: "Plasma",
|
|
},
|
|
effect: {
|
|
en: "If there are any Energy cards in your discard pile, attach 1 of them to Rocket's Zapdos.",
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
"Lightning",
|
|
"Lightning",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Electroburn",
|
|
},
|
|
effect: {
|
|
en: "Rocket's Zapdos does damage to itself equal to 10 times the number of Energy cards attached to it.",
|
|
},
|
|
damage: 70,
|
|
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-30"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|