1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

40 lines
610 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Triumphant Light"
const card: Card = {
set: Set,
name: {
en: "Nosepass"
},
illustrator: "Satoshi Shirai",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
description: {
en: "It moves less than an inch a year, but when<br />it's in a jam, it will spin and drill down into the<br />ground in a split second."
},
stage: "Basic",
attacks: [{
name: {
en: "Tackle"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 3
}
export default card