mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-10 07:51:58 +00:00
feat: Add Silver Tempest to the DB (#386)
This commit is contained in:
51
data/Sword & Shield/Silver Tempest/088.ts
Normal file
51
data/Sword & Shield/Silver Tempest/088.ts
Normal file
@@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Silver Tempest"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Drakloak",
|
||||
fr: "Dispareptil",
|
||||
es: "Drakloak",
|
||||
it: "Drakloak",
|
||||
pt: "Drakloak",
|
||||
de: "Phandra"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Dreepy",
|
||||
fr: "Fantyrm",
|
||||
es: "Dreepy",
|
||||
it: "Dreepy",
|
||||
pt: "Dreepy",
|
||||
de: "Grolldra"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Spooky Shot",
|
||||
fr: "Tir Effrayant",
|
||||
es: "Disparo Embrujado",
|
||||
it: "Colpomistero",
|
||||
pt: "Tiro Assustador",
|
||||
de: "Spukschuss"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user