mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
feat: Add Silver Tempest to the DB (#386)
This commit is contained in:
54
data/Sword & Shield/Silver Tempest/132.ts
Normal file
54
data/Sword & Shield/Silver Tempest/132.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Silver Tempest"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Noibat",
|
||||
fr: "Sonistrelle",
|
||||
es: "Noibat",
|
||||
it: "Noibat",
|
||||
pt: "Noibat",
|
||||
de: "eF-eM"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Dragon"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Flap",
|
||||
fr: "Battement",
|
||||
es: "Aleteo",
|
||||
it: "Alabattito",
|
||||
pt: "Asa",
|
||||
de: "Flattern"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Psychic", "Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Glide",
|
||||
fr: "Glissement",
|
||||
es: "Planeo",
|
||||
it: "Aliante",
|
||||
pt: "Planeio",
|
||||
de: "Gleiten"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user