1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

89 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 opponents 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 opponents 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