mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-17 22:09:54 +00:00
41 lines
614 B
TypeScript
41 lines
614 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 it's in a jam, it will spin and drill down into the 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
|