1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +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

84 lines
1.3 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 '../Guardians Rising'
const card: Card = {
name: {
en: "Patrat",
fr: "Ratentif",
es: "Patrat",
it: "Patrat",
pt: "Patrat",
de: "Nagelotz"
},
illustrator: "Ayaka Yoshida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
504,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Glance",
fr: "Coup dŒil",
es: "Ojeada",
it: "Occhiatina",
pt: "Olhada de Relance",
de: "Kurzer Blick"
},
effect: {
en: "Look at the top card of your opponents deck.",
fr: "Regardez la carte du dessus du deck de votre adversaire.",
es: "Mira la primera carta de la baraja de tu rival.",
it: "Guarda la prima carta del mazzo del tuo avversario.",
pt: "Olhe a primeira carta do baralho do seu oponente.",
de: "Schau dir die oberste Karte des Decks deines Gegners an."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card