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

93 lines
2.0 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Nosepass",
fr: "Tarinor",
es: "Nosepass",
it: "Nosepass",
pt: "Nosepass",
de: "Nasgnet"
},
illustrator: "Anesaki Dynamic",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
299,
],
hp: 80,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Draw Toward",
fr: "Attirance",
es: "Acercamiento",
it: "Attrazione Mirata",
pt: "Chega Mais",
de: "Anziehen"
},
effect: {
en: "Switch 1 of your opponents Benched Pokémon with their Active Pokémon.",
fr: "Échangez lun des Pokémon de Banc de votre adversaire avec son Pokémon Actif.",
es: "Cambia 1 de los Pokémon en Banca de tu rival por su Pokémon Activo.",
it: "Scambia uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo.",
pt: "Troque 1 dos Pokémon no Banco do seu oponente pelo Pokémon Ativo dele(a).",
de: "Tausche 1 Pokémon auf der Bank deines Gegners gegen sein Aktives Pokémon aus."
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Zap Cannon",
fr: "Élecanon",
es: "Electrocañón",
it: "Falcecannone",
pt: "Canhão Zap",
de: "Blitzkanone"
},
effect: {
en: "This Pokémon cant use Zap Cannon during your next turn.",
fr: "Ce Pokémon ne peut pas utiliser Élecanon pendant votre prochain tour.",
es: "Este Pokémon no puede usar Electrocañón durante tu próximo turno.",
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Falcecannone.",
pt: "Este Pokémon não poderá usar Canhão Zap durante a sua próxima vez de jogar.",
de: "Dieses Pokémon kann Blitzkanone während deines nächsten Zuges nicht einsetzen."
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card