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

40 lines
599 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Onix"
},
illustrator: "Tomokazu Komiya",
rarity: "One Diamond",
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<br />hard objects. This is what makes its body so solid."
},
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 4
}
export default card