mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Twilight Masquerade"
|
|
|
|
const card: Card = {
|
|
dexId: [299],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Nosepass",
|
|
fr: "Tarinor",
|
|
es: "Nosepass",
|
|
it: "Nosepass",
|
|
pt: "Nosepass",
|
|
de: "Nasgnet"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Power Rush",
|
|
fr: "Ruée Puissante",
|
|
es: "Envite Poderoso",
|
|
it: "Assalto Potente",
|
|
pt: "Arremetida Poderosa",
|
|
de: "Power-Ansturm"
|
|
},
|
|
|
|
effect: {
|
|
en: "Flip a coin. If tails, during your next turn, this Pokémon can't attack.",
|
|
fr: "Lancez une pièce. Si c'est pile, pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
|
es: "Lanza 1 moneda. Si sale cruz, este Pokémon no puede atacar durante tu próximo turno.",
|
|
it: "Lancia una moneta. Se esce croce, durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
|
pt: "Jogue uma moeda. Se sair coroa, durante o seu próximo turno, este Pokémon não poderá atacar.",
|
|
de: "Wirf 1 Münze. Bei Zahl kann dieses Pokémon während deines nächsten Zuges nicht angreifen."
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |