1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

34 lines
460 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Heliolisk"
},
category: "Pokemon",
hp: 90,
types: ["Lightning"],
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Quick Attack"
},
effect: {
en: "Flip a coin. If heads, this attack does 40 more damage."
},
damage: "40+"
}],
retreat: 1,
rarity: "None"
}
export default card