mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
77 lines
1.2 KiB
TypeScript
77 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Legends Awakened'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Nosepass",
|
|
fr: "Tarinor",
|
|
de: "Nasgnet"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
299,
|
|
],
|
|
|
|
hp: 70,
|
|
|
|
types: [
|
|
"Fighting",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Sharpen",
|
|
fr: "Affûtage",
|
|
de: "Schärfer"
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Nose Poke",
|
|
fr: "Coup d'nez",
|
|
de: "Nasenstüber"
|
|
},
|
|
effect: {
|
|
en: "If Probopass is on your Bench, this attack does 20 damage plus 20 more damage.",
|
|
fr: "Si Tarinorme se trouve sur votre Banc, cette attaque inflige 20 dégâts plus 20 dégâts supplémentaires.",
|
|
de: "Wenn sich Voluminas auf deiner Bank befindet, fügt dieser Angriff 20 Schadenspunkte plus 20 weitere Schadenspunkte zu."
|
|
},
|
|
damage: "20+",
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
description: {
|
|
fr: "Son nez est un aimant, c'est pourquoi ce Pokémon fait toujours face au nord."
|
|
}
|
|
}
|
|
|
|
export default card
|