1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

55
data/Base/Fossil/15.ts Normal file
View File

@ -0,0 +1,55 @@
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: "Fightning",
value: "-30"
},
],
}
export default card