mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Add Silver Tempest to the DB (#386)
This commit is contained in:
51
data/Sword & Shield/Silver Tempest/104.ts
Normal file
51
data/Sword & Shield/Silver Tempest/104.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Silver Tempest"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Golbat",
|
||||
fr: "Nosferalto",
|
||||
es: "Golbat",
|
||||
it: "Golbat",
|
||||
pt: "Golbat",
|
||||
de: "Golbat"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Zubat",
|
||||
fr: "Nosferapti",
|
||||
es: "Zubat",
|
||||
it: "Zubat",
|
||||
pt: "Zubat",
|
||||
de: "Zubat"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Bite",
|
||||
fr: "Morsure",
|
||||
es: "Mordisco",
|
||||
it: "Morso",
|
||||
pt: "Mordida",
|
||||
de: "Biss"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user