1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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

33 lines
1.4 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 '../Undaunted'
const card: Card = {
name: {
en: "Metal Energy",
fr: "Énergie Métal",
de: "Metall-Energie"
},
illustrator: "Kent Kanetsuna",
rarity: "Uncommon",
category: "Energy",
set: Set,
effect: {
fr: "Les dégâts dattaque infligés au Pokémon auquel Énergie Métal est attachée sont réduits de 10 (après application de la Faiblesse et de la Résistance). Ignorez cet effet si le Pokémon auquel est attachée Énergie Métal nest pas Metal. Énergie Métal fournit de lÉnergie Metal. (Ne compte pas comme une carte Énergie de base.)",
en: "Damage done by attacks to the Pokémon that Metal Energy is attached to is reduced by 10 (after applying Weakness and Resistance). Ignore this effect if the Pokémon that Metal Energy is attached to isnt Metal. Metal Energy provides Metal Energy. (Doesnt count as a basic Energy card.)",
de: "Schaden, der dem Pokémon, an das Metall-Energie angelegt ist, durch Angriffe zugefügt wird, wird um 10 reduziert (nachdem Schwäche und Resistenz verrechnet wurden). Dieser Effekt wirkt nur, wenn die Metall-Energie an einem Pokémon vom Typ angelegt ist. Metall-Energie spendet -Energie. (Zählt nicht als Basis-Energiekarte.)"
},
energyType: "Special",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card