mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
23 lines
668 B
TypeScript
23 lines
668 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Aquapolis'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Metal Energy",
|
||
fr: "Énergie Métal",
|
||
de: "Metall Energie"
|
||
},
|
||
|
||
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). Metal Energy provides Energy. (Doesn´t count as a basic Energy card.)"
|
||
}
|
||
}
|
||
|
||
export default card
|