mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 13:52:13 +00:00
78 lines
1.5 KiB
TypeScript
78 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Legends Awakened'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Gulpin",
|
|
fr: "Gloupti",
|
|
de: "Schluppuck"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
316,
|
|
],
|
|
|
|
hp: 60,
|
|
|
|
types: [
|
|
"Psychic",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Amnesia",
|
|
fr: "Amnésie",
|
|
de: "Amnesie"
|
|
},
|
|
effect: {
|
|
en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
|
|
fr: "Choisissez 1 des attaques du Pokémon Défenseur. Il ne peut pas utiliser cette attaque lors du prochain tour de votre adversaire.",
|
|
de: "Wähle 1 Angriff des Verteidigenden Pokémon. Dieses Pokémon kann im nächsten Zug deines Gegners den gewählten Angriff nicht einsetzen."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Psychic",
|
|
],
|
|
name: {
|
|
en: "Gastro Acid",
|
|
fr: "Suc Digestif",
|
|
de: "Magensäfte"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
|
|
de: "Wirf 1 Münze. Bei 'Kopf' ist das Verteidigende Pokémon jetzt gelähmt."
|
|
},
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Psychic",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
retreat: 2,
|
|
|
|
description: {
|
|
fr: "Il est principalement composé d'un estomac dont les sucs digestifs dissolvent tout ce qu'il avale."
|
|
}
|
|
}
|
|
|
|
export default card
|