1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 04:19:53 +00:00

34 lines
482 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Golurk"
},
category: "Pokemon",
hp: 140,
types: ["Psychic"],
stage: "Stage2",
attacks: [{
cost: ["Psychic", "Psychic", "Colorless", "Colorless"],
name: {
en: "Double Lariat"
},
effect: {
en: "Flip 2 coins. This attack does 100 damage for each heads."
},
damage: "100x"
}],
retreat: 4,
rarity: "None"
}
export default card