1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 09:29:55 +00:00

66 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [694],
set: Set,
name: {
en: "Helioptile",
fr: "Galvaran",
es: "Helioptile",
it: "Helioptile",
pt: "Helioptile",
de: "Eguana"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
stage: "Basic",
retreat: 1,
regulationMark: "E",
illustrator: "Mina Nakai",
description: {
en: "The sun powers this Pokémon's electricity generation. Interruption of that process stresses Helioptile to the point of weakness."
},
attacks: [{
cost: ["Colorless"],
name: {
en: "Gnaw",
fr: "Ronge",
de: "Nagen",
es: "Roer",
pt: "Roída",
it: "Rosicchiamento"
},
damage: 10
}, {
cost: ["Lightning", "Colorless"],
name: {
en: "Electro Ball",
fr: "Boule Élek",
de: "Elektroball",
es: "Bola Voltio",
pt: "Bola Elétrica",
it: "Energisfera"
},
damage: 20
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card