mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-20 07:09:54 +00:00
49 lines
745 B
TypeScript
49 lines
745 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Heliolisk"
|
|
},
|
|
|
|
illustrator: "otumami",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Lightning"],
|
|
stage: "Stage1",
|
|
evolveFrom: {
|
|
en: "Helioptile"
|
|
},
|
|
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Quick Attack"
|
|
},
|
|
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 40 more damage."
|
|
},
|
|
|
|
damage: "40+"
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Diamond",
|
|
|
|
description: {
|
|
en: "One Heliolisk basking in the sun with its frill outspread is all it would take to produce enough electricity to power a city.",
|
|
}
|
|
}
|
|
|
|
export default card
|