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

31 lines
386 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Onix"
},
category: "Pokemon",
hp: 110,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting", "Fighting", "Fighting"],
name: {
en: "Land Crush"
},
damage: "70"
}],
retreat: 4,
rarity: "Two Diamond"
}
export default card