mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
24 lines
710 B
TypeScript
24 lines
710 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Hidden Legends'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Ancient Tomb",
|
|
fr: "Tombeau antique",
|
|
de: "Ancient Tomb*"
|
|
},
|
|
|
|
illustrator: "Ken Ikuji",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Stadium",
|
|
|
|
effect: {
|
|
fr: "Cette carte reste en jeu lorsque vous la jouez. Défaussez-la si une autre carte Stade est mise en jeu.\n\nVous ne pouvez pas appliquer la Faiblesse à tous les Pokémon en jeu (Pokémon-ex et Pokémon dont le nom comporte un nom de Dresseur exclus).",
|
|
de: "Don't apply Weakness for all Pokémon in play (excluding Pokémon-ex and Pokémon that has an owner in its name)."
|
|
}
|
|
}
|
|
|
|
export default card
|