1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

84 lines
1.5 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 '../Steam Siege'
const card: Card = {
name: {
en: "Nidoran♂",
fr: "Nidoran♂",
es: "Nidoran♂",
it: "Nidoran♂",
pt: "Nidoran♂",
de: "Nidoran♂"
},
illustrator: "Hasuno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
32,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Come Along",
fr: "Compagnon",
es: "Acompáñame",
it: "Rimorchiare",
pt: "Acompanha-me",
de: "Komm mit!"
},
effect: {
en: "Search your deck for Nidoran♀ and put it onto your Bench. Shuffle your deck afterward.",
fr: "Cherchez Nidoran♀ dans votre deck et placez-le sur votre Banc. Mélangez ensuite votre deck.",
es: "Busca en tu baraja 1 Nidoran♀ y ponlo en tu Banca. Baraja las cartas de tu baraja después.",
it: "Cerca Nidoran♀ nel tuo mazzo e mettilo nella tua panchina. Poi rimischia le carte del tuo mazzo.",
pt: "Procure em seu baralho por Nidoran♀ e coloque-a no seu Banco. Em seguida, embaralhe seus cards.",
de: "Durchsuche dein Deck nach Nidoran♀ und lege es auf deine Bank. Mische anschließend dein Deck."
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Peck",
fr: "Picpic",
es: "Picotazo",
it: "Beccata",
pt: "Bicada",
de: "Schnabel"
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card