mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
40 lines
1.5 KiB
TypeScript
40 lines
1.5 KiB
TypeScript
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 qu'un joueur attache une carte Énergie de sa main à l'un 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
|