1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

45 lines
682 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Mythical Island"
const card: Card = {
set: Set,
name: {
en: "Slurpuff"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
evolveFrom: {
en: "Swirlix"
},
description: {
en: "By taking in a person's scent, it can sniff out their mental and physical condition. It's hoped that this skill will have many medical applications."
},
stage: "Stage1",
attacks: [{
name: {
en: "Magical Shot"
},
damage: 60,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 2,
rarity: "One Diamond"
}
export default card