1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon ffdd3b4656
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
2021-11-12 17:07:41 +01:00

79 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Base Set'
const card: Card = {
name: {
en: "Zapdos",
fr: "Électhor"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
145,
],
hp: 90,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Thunder",
fr: "Tonnerre"
},
effect: {
en: "Flip a coin. If tails, Zapdos does 30 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, Électhor s'inflige 30 dégâts."
},
damage: 60,
},
{
cost: [
"Lightning",
"Lightning",
"Lightning",
"Lightning",
],
name: {
en: "Thunderbolt",
fr: "Fatal-Foudre"
},
effect: {
en: "Discard all Energy cards attached to Zapdos in order to use this attack.",
fr: "Défaussez toutes les cartes Énergie attachées à Électhor pour pouvoir utiliser cette attaque."
},
damage: 100,
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
description: {
fr: "L'oiseau légendaire de la foudre. Il surgit hors des nuages en lançant d'énormes éclairs."
}
}
export default card