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:
61
data/Scarlet & Violet/Shrouded Fable/027.ts
Normal file
61
data/Scarlet & Violet/Shrouded Fable/027.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shrouded Fable"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Zubat",
|
||||
fr: "Nosferapti",
|
||||
es: "Zubat",
|
||||
it: "Zubat",
|
||||
pt: "Zubat",
|
||||
de: "Zubat"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Lead",
|
||||
fr: "Mentor",
|
||||
es: "Liderazgo",
|
||||
it: "Guidare",
|
||||
pt: "Liderar",
|
||||
de: "Führen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for a Supporter card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
fr: "Cherchez dans votre deck une carte Supporter, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
|
||||
es: "Busca en tu baraja 1 carta de Partidario, enséñala y ponla en tu mano. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo una carta Aiuto, mostrala e aggiungila alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por uma carta de Apoiador no seu baralho, revele-a e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach 1 Unterstützerkarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Darkness Fang",
|
||||
fr: "Croc Obscur",
|
||||
es: "Colmillo de Oscuridad",
|
||||
it: "Oscurizanna",
|
||||
pt: "Presa Sombria",
|
||||
de: "Fänge der Dunkelheit"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user