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:
63
data/Scarlet & Violet/Shrouded Fable/028.ts
Normal file
63
data/Scarlet & Violet/Shrouded Fable/028.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shrouded Fable"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Golbat",
|
||||
fr: "Nosferalto",
|
||||
es: "Golbat",
|
||||
it: "Golbat",
|
||||
pt: "Golbat",
|
||||
de: "Golbat"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Darkness"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Speed Dive",
|
||||
fr: "Plongée Rapide",
|
||||
es: "Picado Rápido",
|
||||
it: "Immersione Rapida",
|
||||
pt: "Mergulho Veloz",
|
||||
de: "Tempohechtsprung"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Pitch-Black Blade",
|
||||
fr: "Lame Fuligineuse",
|
||||
es: "Tajo Oscuridad",
|
||||
it: "Lama Buiopesto",
|
||||
pt: "Lâmina do Breu",
|
||||
de: "Pechschwarze Klinge"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon can't attack.",
|
||||
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
||||
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
||||
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
||||
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
||||
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
|
||||
},
|
||||
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user