mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-08 11:09:18 +00:00
48 lines
802 B
TypeScript
48 lines
802 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Eevee Grove"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Slurpuff"
|
|
},
|
|
|
|
illustrator: "Kyoko Umemoto",
|
|
rarity: "Two Diamond",
|
|
category: "Pokemon",
|
|
hp: 120,
|
|
types: ["Psychic"],
|
|
|
|
evolveFrom: {
|
|
en: "Swirlix"
|
|
},
|
|
|
|
description: {
|
|
en: "By taking in a person's scent, it can sniff out their\nmental and physical condition. It's hoped that\nthis skill will have many medical applications."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Sweets Relay"
|
|
},
|
|
|
|
damage: 30,
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
effect: {
|
|
en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 60 more damage."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Metal",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 3
|
|
}
|
|
|
|
export default card |