mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
only missing the secrets cards as they are secret :D Signed-off-by: Avior <florian.bouillon@delta-wings.net>
25 lines
644 B
TypeScript
25 lines
644 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Old Cemetery",
|
||
fr: "Cimetière Ancien"
|
||
},
|
||
|
||
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à."
|
||
},
|
||
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|