mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-15 14:19:50 +00:00
44 lines
698 B
TypeScript
44 lines
698 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Eevee Grove"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Swirlix"
|
|
},
|
|
|
|
illustrator: "MAHOU",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Psychic"],
|
|
|
|
description: {
|
|
en: "It eats its own weight in sugar every day.\nIf it doesn't get enough sugar, it becomes\nincredibly grumpy."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Sweets Relay"
|
|
},
|
|
|
|
damage: 10,
|
|
cost: ["Colorless"],
|
|
|
|
effect: {
|
|
en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 20 more damage."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Metal",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |