1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Khaleeq Ahmad 7f95bd3da1
fix: Remove incorrect weaknesses from Pocket A1a and A2 dragons (#667)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-20 09:38:22 +01:00

52 lines
809 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Garchomp"
},
illustrator: "Atsushi Furusawa",
rarity: "Three Diamond",
category: "Pokemon",
hp: 140,
types: ["Dragon"],
evolveFrom: {
en: "Gabite"
},
description: {
en: "It is said that when one runs at high speed, its wings create blades of wind that can fell nearby trees."
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
en: "Reckless Shearing"
},
effect: {
en: "You must discard a card from your hand in order to use this Ability. Once during your turn, you may draw a card."
}
}],
attacks: [{
name: {
en: "Dragon Claw"
},
damage: 100,
cost: ["Water", "Fighting"]
}],
retreat: 1
}
export default card