mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
92 lines
1.3 KiB
TypeScript
92 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Flashfire'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Sliggoo",
|
||
fr: "Colimucus",
|
||
es: "Sliggoo",
|
||
it: "Sliggoo",
|
||
pt: "Sliggoo",
|
||
de: "Viscargot"
|
||
},
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
705,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Dragon",
|
||
],
|
||
evolveFrom: {
|
||
en: "Goomy",
|
||
fr: "Mucuscule",
|
||
es: "Goomy",
|
||
it: "Goomy",
|
||
pt: "Goomy",
|
||
de: "Viscora"
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Gooey",
|
||
fr: "Poisseux",
|
||
es: "Baba",
|
||
it: "Viscosità",
|
||
pt: "Pegajoso",
|
||
de: "Viskosität"
|
||
},
|
||
effect: {
|
||
en: "Heal 30 damage from this Pokémon.",
|
||
fr: "Soignez 30 dégâts à ce Pokémon.",
|
||
es: "Cura 30 puntos de daño a este Pokémon.",
|
||
it: "Cura questo Pokémon da 30 danni.",
|
||
pt: "Cure 30 de danos deste Pokémon.",
|
||
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Fairy",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Gentle Slap",
|
||
fr: "Gifle Douce",
|
||
es: "Bofetada Gentil",
|
||
it: "Schiaffetto",
|
||
pt: "Tapinha",
|
||
de: "Sanfter Hieb"
|
||
},
|
||
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fairy",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|