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

55 lines
816 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Wizards Black Star Promos'
const card: Card = {
name: {
en: "Zapdos",
},
illustrator: "Toshinao Aoki",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
145,
],
hp: 70,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
"Lightning",
"Lightning",
],
name: {
en: "Lightning Burn",
},
effect: {
en: "Flip a coin. If heads, and if your opponent has any Benched Pokémon, choose 1 of them. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) If tails, Zapdos does 30 damage to itself.",
},
damage: 30,
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card