1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

30 lines
361 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Krabby"
},
category: "Pokemon",
hp: 70,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water", "Colorless"],
name: {
en: "Vise Grip"
},
damage: "40"
}],
retreat: 2,
rarity: "None"
}
export default card