1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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,50 @@
import { Card } from "../../../interfaces"
import Set from "../Shrouded Fable"
const card: Card = {
set: Set,
name: {
en: "Drowzee",
fr: "Soporifik",
es: "Drowzee",
it: "Drowzee",
pt: "Drowzee",
de: "Traumato"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
en: "Eerie Gaze",
fr: "Regard Étrange",
es: "Mirada Inquietante",
it: "Sguardo Inquietante",
pt: "Olhar Perturbador",
de: "Unheimlicher Blick"
},
effect: {
en: "Your opponent reveals their hand.",
fr: "Votre adversaire montre sa main.",
es: "Tu rival enseña las cartas de su mano.",
it: "Il tuo avversario mostra le carte che ha in mano.",
pt: "Seu oponente revela a mão dele.",
de: "Dein Gegner zeigt dir seine Handkarten."
},
damage: 10
}],
retreat: 2,
regulationMark: "H"
}
export default card