1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00

82 lines
1.2 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 '../Promos'
const card: Card = {
name: {
en: "Zoroark",
fr: "Zoroark",
},
illustrator: "Misa Tsutsui",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
571,
],
hp: 120,
types: [
"Darkness",
],
evolveFrom: {
en: "Zorua",
fr: "Zorua",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Rip Claw",
fr: "Griffe Déchirante",
},
effect: {
en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.",
fr: "Lancez une pièce. Si cest face, défaussez une Énergie du Pokémon Actif de votre adversaire.",
},
damage: 30,
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Doom Crush",
fr: "Écrasement Tragique",
},
effect: {
en: "Discard a Darkness Energy from this Pokémon.",
fr: "Défaussez une Énergie Darkness de ce Pokémon.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card