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

31 lines
375 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Sandslash"
},
category: "Pokemon",
hp: 100,
types: ["Fighting"],
stage: "Stage1",
attacks: [{
cost: ["Fighting", "Fighting"],
name: {
en: "Slash"
},
damage: "70"
}],
retreat: 2,
rarity: "Two Diamond"
}
export default card