1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 13:09:53 +00:00

40 lines
623 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Nosepass"
},
illustrator: "Midori Harada",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
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: "Ram"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 2
}
export default card