mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-11 23:55:12 +00:00
35 lines
1.7 KiB
TypeScript
35 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Poison Barb",
|
|
fr: "Pic Venin",
|
|
es: "Flecha Venenosa",
|
|
it: "Velenaculeo",
|
|
de: "Giftstich",
|
|
'pt-br': "Farpa Venenosa",
|
|
ko: "독바늘"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
rarity: "Two Diamond",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "If the Pokémon this card is attached to is your Active Pokémon and is damaged by an attack from your opponent's Pokémon, the Attacking Pokémon is now Poisoned.",
|
|
fr: "Si le Pokémon auquel cette carte est attachée est votre Pokémon Actif et qu'il subit les dégâts d'une attaque d'un Pokémon de votre adversaire, le Pokémon Attaquant est maintenant Empoisonné.",
|
|
es: "Si el Pokémon al que está unida esta carta es tu Pokémon Activo y resulta dañado por un ataque de los Pokémon de tu rival, el Pokémon Atacante pasa a estar Envenenado.",
|
|
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, il Pokémon attaccante viene avvelenato.",
|
|
de: "Wenn das Pokémon, an das diese Karte angelegt ist, dein Aktives Pokémon ist und durch eine Attacke deines Gegners Schaden erhält, ist das Angreifende Pokémon jetzt vergiftet.",
|
|
|
|
ko: "이 카드를 붙이고 있는 포켓몬이 배틀필드에서 상대의 포켓몬으로부터 기술의 데미지를 받았을 때 기술을 사용한 포켓몬을 독으로 만든다.",
|
|
'pt-br': "Se o Pokémon ao qual esta carta está ligada for o seu Pokémon Ativo e for danificado por um ataque dos Pokémon do seu oponente, o Pokémon Atacante agora estará Envenenado."
|
|
},
|
|
|
|
trainerType: "Tool"
|
|
}
|
|
|
|
export default card |