1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

40 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Chilling Reign'
const card: Card = {
name: {
en: "Old Cemetery",
fr: "Cimetière Ancien",
es: "Viejo Cementerio",
it: "Cimitero Antico",
pt: "Cemitério Antigo",
de: "Uralter Friedhof"
},
illustrator: "Oswaldo KATO",
rarity: "Uncommon",
category: "Trainer",
set: Set,
trainerType: 'Stadium',
effect: {
en: "Whenever any player attaches an Energy card from their hand to 1 of their non-Psychic Pokémon, put 2 damage counters on that Pokémon.",
fr: "Chaque fois quun joueur attache une carte Énergie de sa main à lun de ses Pokémon non Psychic, placez 2 marqueurs de dégâts sur ce Pokémon-là.",
es: "Cada vez que algún jugador una 1 carta de Energía de su mano a 1 de sus Pokémon no Psychic, pon 2 contadores de daño en ese Pokémon.",
it: "Ogni volta che un giocatore assegna a uno dei suoi Pokémon non di tipo Psychic una carta Energia dalla propria mano, metti due segnalini danno su quel Pokémon.",
pt: "Sempre que algum jogador ligar 1 carta de Energia da própria mão a 1 dos próprios Pokémon que não seja de tipo Psychic, coloque 2 contadores de dano naquele Pokémon.",
de: "Lege jedes Mal, wenn ein Spieler 1 Energiekarte aus seiner Hand an 1 seiner Pokémon, das kein Psychic-Pokémon ist, anlegt, 2 Schadensmarken auf jenes Pokémon."
},
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card