1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00

36 lines
553 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Grapploct"
},
illustrator: "kurumitsu",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
stage: "Stage1",
attacks: [{
cost: ["Fighting", "Fighting", "Colorless"],
name: {
en: "Knock Back"
},
effect: {
en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)"
},
damage: "70"
}],
retreat: 3,
rarity: "Two Diamond"
}
export default card