mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
102 lines
1.7 KiB
TypeScript
102 lines
1.7 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "sm12-154",
|
||
localId: 154,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Slurpuff",
|
||
fr: "Cupcanaille",
|
||
},
|
||
|
||
hp: 110,
|
||
|
||
type: [
|
||
Type.FAIRY,
|
||
],
|
||
|
||
dexId: 685,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm12/154/low",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm12/154/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm12/154/high",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm12/154/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Swirlix",
|
||
fr: "Sucroquin",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "Kyoko Umemoto",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FAIRY
|
||
],
|
||
name: {
|
||
en: "Olfactory Enchantment",
|
||
fr: "Enchantement Olfactif",
|
||
},
|
||
text: {
|
||
en: "Your opponent's Active Pokémon is now Confused.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.FAIRY
|
||
],
|
||
name: {
|
||
en: "Sweet Panic",
|
||
fr: "Douce Panique",
|
||
},
|
||
text: {
|
||
en: "If your opponent's Active Pokémon isn't Confused, this attack does nothing.",
|
||
fr: "Si le Pokémon Actif de votre adversaire n’est pas Confus, cette attaque ne fait rien.",
|
||
},
|
||
damage: 110
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.METAL,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.DARKNESS,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Cosmic Eclipse",
|
||
code: "sm12"
|
||
}
|
||
}
|
||
|
||
export default card
|