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

87 lines
1.5 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 '../Team Up'
const card: Card = {
name: {
en: "Nidorina",
fr: "Nidorina",
es: "Nidorina",
it: "Nidorina",
pt: "Nidorina",
de: "Nidorina"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
30,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Nidoran♀",
fr: "Nidoran♀",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Family Rescue",
fr: "Sauvetage Familial",
es: "Rescate Familiar",
it: "Salva Famiglia",
pt: "Resgatar a Família",
de: "Familienrettung"
},
effect: {
en: "Shuffle 5 Psychic Pokémon from your discard pile into your deck.",
fr: "Mélangez 5 Pokémon Psychic de votre pile de défausse avec votre deck.",
es: "Pon 5 Pokémon Psychic de tu pila de descartes en tu baraja y baraja todas las cartas.",
it: "Rimischia cinque Pokémon Psychic dalla tua pila degli scarti nel tuo mazzo.",
pt: "Embaralhe 5 Pokémon Psychic da sua pilha de descarte no seu baralho.",
de: "Mische 5 Psychic-Pokémon aus deinem Ablagestapel in dein Deck."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
es: "Mordisco",
it: "Morso",
pt: "Mordida",
de: "Biss"
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card