1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 21:39:55 +00:00

40 lines
614 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Extradimensional Crisis"
const card: Card = {
set: Set,
name: {
en: "Stufful"
},
illustrator: "Sekio",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
description: {
en: "Its fluffy fur is a delight to pet, but carelessly reaching out\nto touch this Pokémon could result in painful retaliation."
},
stage: "Basic",
attacks: [{
name: {
en: "Ram"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 2
}
export default card