mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
89 lines
1.7 KiB
TypeScript
89 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Celestial Storm'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Gulpin",
|
||
fr: "Gloupti",
|
||
es: "Gulpin",
|
||
it: "Gulpin",
|
||
pt: "Gulpin",
|
||
de: "Schluppuck"
|
||
},
|
||
illustrator: "Yuka Morii",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
316,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Yawn",
|
||
fr: "Bâillement",
|
||
es: "Bostezo",
|
||
it: "Sbadiglio",
|
||
pt: "Bocejo",
|
||
de: "Gähner"
|
||
},
|
||
effect: {
|
||
en: "Your opponent’s Active Pokémon is now Asleep.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
|
||
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
|
||
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Spit Poison",
|
||
fr: "Crache-Venin",
|
||
es: "Escupir Veneno",
|
||
it: "Sputaveleno",
|
||
pt: "Cuspe Venenoso",
|
||
de: "Giftspucke"
|
||
},
|
||
effect: {
|
||
en: "Your opponent’s Active Pokémon is now Poisoned.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
|
||
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
|
||
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
|
||
},
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|