mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
72 lines
880 B
TypeScript
72 lines
880 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Base Set'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Zapdos",
|
|
},
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
145,
|
|
],
|
|
hp: 90,
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
"Lightning",
|
|
"Lightning",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Thunder",
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If tails, Zapdos does 30 damage to itself.",
|
|
},
|
|
damage: 60,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
"Lightning",
|
|
"Lightning",
|
|
"Lightning",
|
|
],
|
|
name: {
|
|
en: "Thunderbolt",
|
|
},
|
|
effect: {
|
|
en: "Discard all Energy cards attached to Zapdos in order to use this attack.",
|
|
},
|
|
damage: 100,
|
|
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-30"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|