1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

feat: Add shrouded fable cards (#525)

This commit is contained in:
2024-08-25 02:44:42 +02:00
committed by GitHub
parent 80f483ab66
commit cfd6d5c0e8
101 changed files with 5742 additions and 1 deletions

View File

@ -0,0 +1,32 @@
import { Card } from "../../../interfaces"
import Set from "../Shrouded Fable"
const card: Card = {
set: Set,
name: {
en: "Dangerous Laser",
fr: "Laser Dangereux",
es: "Láser Peligroso",
it: "Laser Pericoloso",
pt: "Laser Perigoso",
de: "Gefährlicher Laser"
},
rarity: "ACE SPEC Rare",
category: "Trainer",
effect: {
en: "Your opponent's Active Pokémon is now Burned and Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé et Confus.",
es: "El Pokémon Activo de tu rival pasa a estar Confundido y Quemado.",
it: "Il Pokémon attivo del tuo avversario viene bruciato e confuso.",
pt: "O Pokémon Ativo do seu oponente agora está Confuso e Queimado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt und verwirrt."
},
trainerType: "Item",
regulationMark: "H"
}
export default card