1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Promos-A/021.ts
2025-02-19 21:52:42 +01:00

41 lines
588 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Onix"
},
illustrator: "Tomokazu Komiya",
rarity: "None",
category: "Pokemon",
types: ["Fighting"],
stage: "Basic",
attacks: [{
name: {
en: "Land Crush"
},
cost: ["Fighting", "Fighting", "Fighting"],
damage: 70
}],
hp: 110,
description: {
en: "As it digs through the ground, it absorbs many hard objects. This is what makes its body so solid."
},
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 4
}
export default card