1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 18:29:19 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/069.ts
2024-11-28 00:34:09 +01:00

35 lines
480 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Kingler"
},
category: "Pokemon",
hp: 120,
types: ["Water"],
stage: "Stage1",
attacks: [{
cost: ["Water", "Water", "Colorless"],
name: {
en: "KO Crab"
},
effect: {
en: "Flip 2 coins. If both of them are heads, this attack does 80 more damage"
},
damage: "80+"
}],
retreat: 3,
rarity: "Two Diamond"
}
export default card