mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
24 lines
714 B
TypeScript
24 lines
714 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Burning Scarf",
|
||
fr: "Bandana Brûlant"
|
||
},
|
||
|
||
illustrator: "Toyste Beach",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
en: "If the Fire Pokémon this card is attached to is in the Active Spot and is damaged by an opponent’s attack (even if it is Knocked Out), the Attacking Pokémon is now Burned.",
|
||
fr: "Si le Pokémon Fire auquel cette carte est attachée est sur le Poste Actif et qu’il subit les dégâts d’une attaque d’un adversaire (même s’il est mis K.O.), le Pokémon Attaquant est maintenant Brûlé."
|
||
},
|
||
|
||
trainerType: "Tool"
|
||
}
|
||
|
||
export default card
|