1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

69 lines
905 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",
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