1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

92 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 '../Triumphant'
const card: Card = {
name: {
en: "Shuppet",
fr: "Polichombr",
de: "Shuppet"
},
illustrator: "Ryo Ueda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
353,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Disable",
fr: "Entrave",
de: "Aussetzer"
},
effect: {
en: "Flip a coin. If heads, choose 1 of the Defending Pokémons attacks. That Pokémon cant use that attack during your opponents next turn.",
fr: "Lancez une pièce. Si cest face, choisissez lune des attaques du Pokémon Défenseur. Ce Pokémon ne peut pas utiliser cette attaque pendant le prochain tour de votre adversaire.",
de: "Wirf eine Münze. Wähle bei \"Kopf\" 1 Angriff des Verteidigenden Pokémon. Das Pokémon kann den gewählten Angriff im nächsten Zug deines Gegners nicht einsetzen."
},
},
{
cost: [
"Psychic",
],
name: {
en: "Haunt",
fr: "Hanter",
de: "Spuk"
},
effect: {
en: "Put 1 damage counter on the Defending Pokémon.",
fr: "Placez un marqueur de dégât sur le Pokémon Défenseur.",
de: "Lege 1 Schadensmarke auf das Verteidigende Pokémon."
},
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Colorless",
value: "-20"
},
],
retreat: 1,
description: {
en: "It uses its horn to feed on envy and malice, or so its said. Its very active at night."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card