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:
74
data/Sword & Shield/Astral Radiance/003.ts
Normal file
74
data/Sword & Shield/Astral Radiance/003.ts
Normal file
@ -0,0 +1,74 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Hisuian Electrode",
|
||||
fr: "Électrode de Hisui",
|
||||
es: "Electrode de Hisui",
|
||||
it: "Electrode di Hisui",
|
||||
pt: "Electrode de Hisui",
|
||||
de: "Hisui-Lektrobal"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Hisuian Voltorb",
|
||||
fr: "Voltorbe de Hisui",
|
||||
es: "Voltorb de Hisui",
|
||||
it: "Voltorb di Hisui",
|
||||
pt: "Voltorb de Hisui",
|
||||
de: "Hisui-Voltobal"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Triple Draw",
|
||||
fr: "Triple Pioche",
|
||||
es: "Triple Robo",
|
||||
it: "Pescata Tripla",
|
||||
pt: "Compra Tripla",
|
||||
de: "Dreifachzug"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw 3 cards.",
|
||||
fr: "Piochez 3 cartes.",
|
||||
es: "Roba 3 cartas.",
|
||||
it: "Pesca tre carte.",
|
||||
pt: "Compre 3 cartas.",
|
||||
de: "Ziehe 3 Karten."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Irritated Bomb",
|
||||
fr: "Bombe Agacée",
|
||||
es: "Bomba Enojada",
|
||||
it: "Irritabomba",
|
||||
pt: "Bomba Irritada",
|
||||
de: "Gereizte Bombe"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user