1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

Added informations (#25)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-05-26 22:20:17 +02:00
committed by GitHub
parent 5dab7afa10
commit dc52152f23
166 changed files with 7775 additions and 0 deletions

View File

@ -0,0 +1,24 @@
import { Card } from '../../../interfaces'
import Set from '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Tool Jammer",
fr: "Bloqueur dOutil"
},
illustrator: "inose yukie",
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "As long as the Pokémon this card is attached to is in the Active Spot, Pokémon Tools attached to your opponents Active Pokémon have no effect, except for Tool Jammer.",
fr: "Tant que le Pokémon auquel cette carte est attachée est sur le Poste Actif, les Outils Pokémon attachés au Pokémon Actif de votre adversaire nont aucun effet, à lexception de Bloqueur dOutil."
},
trainerType: "Tool"
}
export default card