1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

32 lines
435 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Zebstrika"
},
category: "Pokemon",
hp: 90,
types: ["Lightning"],
stage: "Stage1",
attacks: [{
cost: ["Lightning"],
name: {
en: "Thunder Spear"
},
effect: {
en: "This attack does 30 damage to 1 of your opponent's Pokémon."
}
}],
retreat: 1,
rarity: "None"
}
export default card