1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22: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

72 lines
882 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Base Set 2'
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