1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 09:29:55 +00:00

89 lines
1.6 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 '../XY'
const card: Card = {
name: {
en: "Zorua",
fr: "Zorua",
es: "Zorua",
it: "Zorua",
pt: "Zorua",
de: "Zorua"
},
illustrator: "Toyste Beach",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
570,
],
hp: 50,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Scratch",
fr: "Griffe",
es: "Arañazo",
it: "Graffio",
pt: "Arranhão",
de: "Kratzer"
},
damage: 10,
},
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Nasty Plot",
fr: "Machination",
es: "Maquinación",
it: "Congiura",
pt: "Trama Maldosa",
de: "Ränkeschmied"
},
effect: {
en: "Search your deck for a card and put it into your hand. Shuffle your deck afterward.",
fr: "Cherchez une carte dans votre deck et ajoutez-la à votre main. Mélangez ensuite votre deck.",
es: "Busca en tu baraja 1 carta y ponla en tu mano. Baraja las cartas de tu baraja después.",
it: "Cerca nel tuo mazzo una carta qualsiasi e aggiungila a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Procure um card em seu baralho e coloque-o em sua mão. Em seguida, embaralhe seus cards.",
de: "Durchsuche dein Deck nach 1 Karte und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card