1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Sun & Moon/SM Black Star Promos/SM15.ts

82 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../SM Black Star Promos'
const card: Card = {
name: {
en: "Zygarde",
fr: "Zygarde",
es: "Zygarde",
it: "Zygarde",
pt: "Zygarde",
de: "Zygarde"
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
718,
],
hp: 130,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Pulse Blast",
fr: "Explosion vibrante",
es: "Pulso explosivo",
it: "Scoppimpulso",
pt: "Pulso Explosivo",
de: "Pulsierender Schuss"
},
damage: 60,
},
{
cost: [
"Fighting",
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Lands Wrath",
fr: "Force Chtonienne",
es: "Fuerza Telúrica",
it: "Forza Tellurica",
pt: "Ira da Terra",
de: "Bodengewalt"
},
damage: 130,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card