1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +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

View File

@ -0,0 +1,60 @@
import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Zapdos",
fr: "Électhor",
},
illustrator: "Misa Tsutsui",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
145,
],
hp: 110,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Thunderous Assault",
fr: "Assaut Orageux",
},
effect: {
en: "If this Pokémon was on the Bench and became your Active Pokémon this turn, this attack does 70 more damage. This attack's damage isn't affected by Weakness.",
fr: "Si ce Pokémon était sur le Banc et est devenu votre Pokémon Actif pendant ce tour, cette attaque inflige 70 dégâts supplémentaires. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card