mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
39 lines
2.2 KiB
TypeScript
39 lines
2.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Single Strike Scroll of the Fanged Dragon",
|
||
fr: "Rouleau du Dragon à Crocs Poing Final",
|
||
es: "Pergamino Dragón Colmilludo Golpe Brusco",
|
||
it: "Rotolo del Drago Dentuto Colpo Singolo",
|
||
pt: "Single Strike Scroll of the Fanged Dragon",
|
||
de: "Fokussierter-Angriff-Bissdrachenrolle"
|
||
},
|
||
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
en: "The Single Strike Pokémon this card is attached to can use the attack on this card. (You still need the necessary Energy to use this attack.)",
|
||
fr: "Le Pokémon Poing Final auquel cette carte est attachée peut utiliser l’attaque sur cette carte. (Vous avez toujours besoin de l’Énergie nécessaire pour utiliser cette attaque.)\nFightingMetalMetalColorlessColorless Tranche Surpuissante 300\nDéfaussez toute l’Énergie de ce Pokémon.",
|
||
es: "El Pokémon Golpe Brusco al que esté unida esta carta puede usar el ataque de esta carta. (Sigues necesitando las Energías necesarias para usar este ataque).\nFightingMetalMetalColorlessColorless Tajo Superfulminante 300\nDescarta todas las Energías de este Pokémon.",
|
||
it: "Il Pokémon Colpo Singolo a cui è assegnata questa carta può usare l’attacco di questa carta. Devi comunque avere l’Energia necessaria per usare questo attacco.\nFightingMetalMetalColorlessColorless Lacerazione Inesorabile 300\nScarta tutte le Energie da questo Pokémon.",
|
||
pt: "The Single Strike Pokémon this card is attached to can use the attack on this card. (You still need the necessary Energy to use this attack.)\nFightingMetalMetalColorlessColorless Superstrong Slash 300\nDiscard all Energy from this Pokémon.",
|
||
de: "Das Fokussierter-Angriff-Pokémon, an das diese Karte angelegt ist, kann die Attacke auf dieser Karte einsetzen. (Du benötigst jedoch die für diese Attacke notwendige Energie.)\nFightingMetalMetalColorlessColorless Superstarker Schlitzer 300\nLege alle Energien von diesem Pokémon auf deinen Ablagestapel."
|
||
},
|
||
|
||
trainerType: "Tool",
|
||
illustrator: "5ban Graphics"
|
||
}
|
||
|
||
export default card |