1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 16:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

90 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Zebstrika",
fr: "Zéblitz",
es: "Zebstrika",
it: "Zebstrika",
pt: "Zebstrika",
de: "Zebritz"
},
illustrator: "Misa Tsutsui",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
523,
],
hp: 110,
types: [
"Lightning",
],
evolveFrom: {
en: "Blitzle",
fr: "Zébibron",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Sprint",
fr: "Sprint",
es: "Esprint",
it: "Sprint",
pt: "Corrida",
de: "Sprint"
},
effect: {
en: "Once during your turn (before your attack), you may discard your hand and draw 4 cards.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser votre main et piocher 4 cartes.",
es: "Una vez durante tu turno (antes de tu ataque), puedes descartar las cartas de tu mano y robar 4 cartas.",
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi scartare le carte che hai in mano e pescare quattro carte.",
pt: "Uma vez durante a sua vez de jogar (antes de atacar), você pode descartar a sua mão e comprar 4 cartas.",
de: "Einmal während deines Zuges (bevor du angreifst) kannst du deine Handkarten auf deinen Ablagestapel legen und 4 Karten ziehen."
},
},
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Head Bolt",
fr: "Éclair Frontal",
es: "Rayo de Cabeza",
it: "Zuccalampo",
pt: "Raio de Cabeça",
de: "Kopf-Blitz"
},
damage: 60,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card