mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Add shrouded fable cards (#525)
This commit is contained in:
72
data/Scarlet & Violet/Shrouded Fable/070.ts
Normal file
72
data/Scarlet & Violet/Shrouded Fable/070.ts
Normal file
@ -0,0 +1,72 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shrouded Fable"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dusknoir",
|
||||
fr: "Noctunoir",
|
||||
es: "Dusknoir",
|
||||
it: "Dusknoir",
|
||||
pt: "Dusknoir",
|
||||
de: "Zwirrfinst"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Cursed Blast",
|
||||
fr: "Explosion Maudite",
|
||||
es: "Estallido Maldito",
|
||||
it: "Esplosione Maledetta",
|
||||
pt: "Explosão Maldita",
|
||||
de: "Verfluchte Explosion"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may put 13 damage counters on 1 of your opponent's Pokémon. If you use this Ability, this Pokémon is Knocked Out.",
|
||||
fr: "Une fois pendant votre tour, vous pouvez placer 13 marqueurs de dégâts sur l'un des Pokémon de votre adversaire. Si vous utilisez ce talent, ce Pokémon est mis K.O.",
|
||||
es: "Una vez durante tu turno, puedes poner 13 contadores de daño en uno de los Pokémon de tu rival. Si usas esta habilidad, este Pokémon queda Fuera de Combate.",
|
||||
it: "Una sola volta durante il tuo turno, puoi mettere 13 segnalini danno su uno dei Pokémon del tuo avversario. Se usi questa abilità, questo Pokémon viene messo KO.",
|
||||
pt: "Uma vez durante o seu turno, você poderá colocar 13 contadores de dano em 1 dos Pokémon do seu oponente. Se você usar esta Habilidade, este Pokémon será Nocauteado.",
|
||||
de: "Einmal während deines Zuges kannst du 13 Schadensmarken auf 1 Pokémon deines Gegners legen. Wenn du diese Fähigkeit einsetzt, ist dieses Pokémon kampfunfähig."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Shadow Bind",
|
||||
fr: "Étreinte d'Ombre",
|
||||
es: "Atadura Sombría",
|
||||
it: "Legami d'Ombra",
|
||||
pt: "Aprisionamento Sombrio",
|
||||
de: "Schattenbindung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, the Defending Pokémon can't retreat.",
|
||||
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.",
|
||||
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.",
|
||||
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
|
||||
pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.",
|
||||
de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen."
|
||||
},
|
||||
|
||||
damage: 150
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user