mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Add Silver Tempest to the DB (#386)
This commit is contained in:
41
data/Sword & Shield/Silver Tempest/079.ts
Normal file
41
data/Sword & Shield/Silver Tempest/079.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Silver Tempest"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Elgyem",
|
||||
fr: "Lewsor",
|
||||
es: "Elgyem",
|
||||
it: "Elgyem",
|
||||
pt: "Elgyem",
|
||||
de: "Pygraulon"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Headbutt",
|
||||
fr: "Coup d'Boule",
|
||||
es: "Golpe Cabeza",
|
||||
it: "Bottintesta",
|
||||
pt: "Cabeçada",
|
||||
de: "Kopfnuss"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user