mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
36 lines
513 B
TypeScript
36 lines
513 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Golurk"
|
|
},
|
|
|
|
illustrator: "match",
|
|
category: "Pokemon",
|
|
hp: 140,
|
|
types: ["Psychic"],
|
|
stage: "Stage1",
|
|
|
|
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: "Two Diamond"
|
|
}
|
|
|
|
export default card
|