1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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

72 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Natu",
fr: "Natu",
es: "Natu",
it: "Natu",
pt: "Natu",
de: "Natu"
},
illustrator: "tetsuya koizumi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
177,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Future Sight",
fr: "Prescience",
es: "Premonición",
it: "Divinazione",
pt: "Visão do Futuro",
de: "Seher"
},
effect: {
en: "Look at the top 4 cards of either players deck and put them back in any order.",
fr: "Regardez les 4 cartes du dessus du deck de lun des joueurs et replacez-les dans lordre de votre choix.",
es: "Mira las 4 primeras cartas de la baraja de cualquiera de los jugadores y vuelve a ponerlas en la parte superior de esa baraja en el orden que quieras.",
it: "Guarda le prime quattro carte del mazzo di uno dei giocatori e rimettile a posto nellordine che preferisci.",
pt: "Olhe as 4 primeiras cartas do baralho de um dos jogadores e coloque-as de volta em qualquer ordem.",
de: "Schau dir die obersten 4 Karten des Decks eines der beiden Spieler an und lege sie in beliebiger Reihenfolge zurück auf sein Deck."
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card