mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
36 lines
2.0 KiB
TypeScript
36 lines
2.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Twilight Masquerade"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Handheld Fan",
|
|
fr: "Ventilateur de Poche",
|
|
es: "Ventilador de Mano",
|
|
it: "Ventilatore Portatile",
|
|
pt: "Ventilador Portátil",
|
|
de: "Handventilator"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "If the Pokémon this card is attached to is in the Active Spot and is damaged by an attack from your opponent's Pokémon (even if this Pokémon is Knocked Out), move an Energy from the Attacking Pokémon to 1 of your opponent's Benched Pokémon.",
|
|
fr: "Si le Pokémon auquel cette carte est attachée est sur le Poste Actif et qu'il subit les dégâts d'une attaque d'un Pokémon de votre adversaire (même si ce Pokémon est mis K.O.), déplacez une Énergie du Pokémon Attaquant vers l'un des Pokémon de Banc de votre adversaire.",
|
|
es: "Si el Pokémon al que está unida esta carta está en el Puesto Activo y resulta dañado por un ataque de los Pokémon de tu rival (incluso si queda Fuera de Combate), mueve 1 Energía del Pokémon Atacante a uno de los Pokémon en Banca de tu rival.",
|
|
it: "Se il Pokémon a cui è assegnata questa carta è in posizione attiva e viene danneggiato da un attacco di un Pokémon del tuo avversario, anche se viene messo KO, sposta un'Energia dal Pokémon attaccante a uno dei Pokémon nella panchina del tuo avversario.",
|
|
pt: "Se o Pokémon ao qual esta carta está ligada estiver no Campo Ativo e for danificado por um ataque dos Pokémon do seu oponente (mesmo que este Pokémon seja Nocauteado), mova uma Energia do Pokémon Atacante para 1 dos Pokémon no Banco do seu oponente.",
|
|
de: "Wenn das Pokémon, an das diese Karte angelegt ist, in der Aktiven Position ist und durch eine Attacke von Pokémon deines Gegners Schaden erhält (auch wenn dieses Pokémon dadurch kampfunfähig wird), verschiebe 1 Energie vom Angreifenden Pokémon auf 1 Pokémon auf der Bank deines Gegners."
|
|
},
|
|
|
|
trainerType: "Tool",
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |