mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
24 lines
640 B
TypeScript
24 lines
640 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Dragon'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Low Pressure System",
|
|
fr: "Système à basse pression",
|
|
de: "Tiefdrucksystem"
|
|
},
|
|
|
|
illustrator: "Shin-ichi Yoshikawa",
|
|
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\nChaque Pokémon et en jeu (les vôtres et ceux de votre adversaire) obtient 10 PV de plus.",
|
|
de: "Each and Pokémon in play (both yours and your opponent's) gets +10HP."
|
|
}
|
|
}
|
|
|
|
export default card
|