mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-17 13:59:55 +00:00
41 lines
578 B
TypeScript
41 lines
578 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Swinub"
|
|
},
|
|
|
|
illustrator: "Eri Yamaki",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Water"],
|
|
|
|
description: {
|
|
en: "It rubs its snout on the ground to find and dig up food. It sometimes discovers hot springs."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Headbutt"
|
|
},
|
|
|
|
damage: 40,
|
|
cost: ["Water", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Metal",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2
|
|
}
|
|
|
|
export default card
|