mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
56 lines
815 B
TypeScript
56 lines
815 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Fossil'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Zapdos",
|
|
},
|
|
illustrator: "Mitsuhiro Arita",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
145,
|
|
],
|
|
hp: 80,
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
"Lightning",
|
|
"Lightning",
|
|
"Lightning",
|
|
],
|
|
name: {
|
|
en: "Thunderstorm",
|
|
},
|
|
effect: {
|
|
en: "For each of your opponent's Benched Pokémon, flip a coin. If heads, this attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Then, Zapdos does 10 damage times the number of tails to itself.",
|
|
},
|
|
damage: 40,
|
|
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-30"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|