mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
50 lines
737 B
TypeScript
50 lines
737 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Skyridge'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Igglybuff",
|
|
de: "Fluffeluff"
|
|
},
|
|
illustrator: "Keiko Fukuyama",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
174,
|
|
],
|
|
hp: 30,
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Energy Heal",
|
|
de: "Energieauffrischung"
|
|
},
|
|
effect: {
|
|
en: "Choose 1 of your Pokémon with an Energy card attached to it. Remove 1 damage counter from that Pokémon.",
|
|
de: "Wähle 1 deiner Pokémon, an das mindestens eine Energiekarte angelegt ist. Entferne 1 Schadensmarke von deinem Pokémon."
|
|
},
|
|
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|