1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

23 lines
668 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Neo Genesis'
const card: Card = {
name: {
en: "Metal Energy",
fr: "Énergie Métal",
de: "Metal Energy*"
},
illustrator: "Milky Isobe",
rarity: "Rare",
category: "Energy",
set: Set,
energyType: "Special",
effect: {
de: "Damage done to the Pokémon Metal Energy is attached to is reduced by 10 (after applying Weakness and Resistance). If the Pokémon Metal Energy is attached to isn't , whenever it damages a Pokémon, reduce that damage by 10 (before applying Weakness and Resistance).\nMetal Energy provides Energy. (Doesn't count as a basic Energy card.)"
}
}
export default card