mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
feat: Add Astral Radiance (#305)
This commit is contained in:
48
data/Sword & Shield/Astral Radiance/047.ts
Normal file
48
data/Sword & Shield/Astral Radiance/047.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Bergmite",
|
||||
fr: "Grelaçon",
|
||||
es: "Bergmite",
|
||||
it: "Bergmite",
|
||||
pt: "Bergmite",
|
||||
de: "Arktip"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Icicle",
|
||||
fr: "Concrétion Glacée",
|
||||
es: "Témpano",
|
||||
it: "Stalattite",
|
||||
pt: "Pingente de Gelo",
|
||||
de: "Eiszapfen"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user