1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 10:49:55 +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

74 lines
1.5 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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Igglybuff",
fr: "Toudoudou",
de: "Fluffeluff"
},
illustrator: "Atsuko Nishida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
174,
],
hp: 30,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
fr: "Joli visage endormi",
de: "Niedliches Schlafgesicht"
},
effect: {
fr: "Tant que Toudoudou reste Endormi, prévenez tous les dégâts qui peuvent lui être infligés par des attaques.",
de: "Solange Fluffeluff schläft, verhindere allen Schaden, der Fluffeluff durch Angriffe zugefügt wird."
},
},
],
attacks: [
{
name: {
en: "Graffiti",
fr: "Graffiti",
de: "Graffiti"
},
effect: {
en: "Igglybuff is now Asleep. During your opponents next turn, the attack cost of each of the Defending Pokémons attacks is Colorless more.",
fr: "Toudoudou est maintenant Endormi. Au prochain tour de votre adversaire, le coût de lattaque de chaque Pokémon Défenseur est plus élevé de Colorless.",
de: "Fluffeluff schläft jetzt. Während des nächsten Zuges deines Gegners kosten die Angriffe jedes Verteidigenden Pokémons mehr."
},
},
],
retreat: 0,
description: {
en: "Its extremely flexible and elastic body makes it bounce continuously—anytime, anywhere."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card