mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
50 lines
777 B
TypeScript
50 lines
777 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Wizards Black Star Promos'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Igglybuff",
|
|
fr: "Toudoudou"
|
|
},
|
|
|
|
illustrator: "Kagemaru Himeno",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
174,
|
|
],
|
|
|
|
hp: 30,
|
|
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Good Night Song",
|
|
fr: "Chanson du Marchand de sable"
|
|
},
|
|
effect: {
|
|
en: "The Defending Pokémon is now Asleep.",
|
|
fr: "Le Pokémon Défenseur est maintenant Endormi."
|
|
},
|
|
|
|
},
|
|
],
|
|
|
|
description: {
|
|
fr: "Son corps extrêmement flexible et élastique le fait rebondir continuellement ─ tout le temps, et dans toutes les directions."
|
|
}
|
|
}
|
|
|
|
export default card
|