mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 10:59:54 +00:00
45 lines
682 B
TypeScript
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
|