1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +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

35 lines
1.3 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: "Defender",
fr: "Défenseur",
de: "Defender"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Attachez Défenseur à lun de vos Pokémon. Défaussez cette carte une fois le prochain tour de votre adversaire terminé. \nTous les dégâts dattaque infligés par votre adversaire au Pokémon auquel Défenseur est attachée sont réduits de 20 (après application de la Faiblesse et de la Résistance).",
en: "Attach Defender to 1 of your Pokémon. Discard this card at the end of your opponents next turn. Any damage done to the Pokémon Defender is attached to by an opponents attack is reduced by 20 (after applying Weakness and Resistance).",
de: "Lege Defender an 1 deiner Pokémon an, Lege diese Karte am Ende des nächsten Zuges deines Gegners auf deinen Ablagestapel. Schaden, der dem Pokémon, an dem Defender angelegt ist, durch einen gegnerischen Angriff zugefügt wird, wird um 20 Schadenspunkte reduziert (nachdem Schwäche und Resistenz abgerechnet wurden)."
},
trainerType: "Item",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
hp: 0
}
export default card