mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 20:09:55 +00:00
40 lines
638 B
TypeScript
40 lines
638 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Stufful"
|
|
},
|
|
|
|
illustrator: "Sanosuke Sakuma",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Colorless"],
|
|
|
|
description: {
|
|
en: "Its fluffy fur is a delight to pet, but carelessly reaching out to touch this Pokémon could result in painful retaliation."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Hammer In"
|
|
},
|
|
|
|
damage: 60,
|
|
cost: ["Colorless", "Colorless", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2
|
|
}
|
|
|
|
export default card |