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

78 lines
1.0 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Zapdos",
fr: "Electhor",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
145,
],
hp: 100,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Drill Peck",
fr: "Bec vrille",
},
damage: 30,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Lightning Wing",
fr: "Aile éclair",
},
effect: {
en: "Flip a coin. If heads, this attack does 50 damage plus 20 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Lightning",
value: "+30"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
}
export default card