1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00
2025-05-04 00:37:30 +02:00

56 lines
833 B
TypeScript
Raw Permalink 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 '../BW trainer Kit (Zoroark).ts'
const card: Card = {
dexId: [570],
set: Set,
name: {
en: "Zorua",
fr: "Zorua",
es: "Zorua",
it: "Zorua",
pt: "Zorua",
de: "Zorua"
},
illustrator: "Kouki Saitou",
rarity: "None",
category: "Pokemon",
hp: 60,
types: ["Darkness"],
stage: "Basic",
attacks: [{
cost: [
"Colorless",
"Colorless"
],
name: {
en: "Lunge"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing."
},
damage: 30
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
resistances: [{
type: "Psychic",
value: "-20"
}],
description: {
en: "To protect themselves from danger, they hide their true identities by transforming into people and Pokémon."
},
retreat: 1,
}
export default card