mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +00:00
fix: Fixed new added "Apex" Cards (#590)
Co-authored-by: yusullu <yusullu@gwh-digital.de>
This commit is contained in:
32
data/Pokémon TCG Pocket/Genetic Apex/106.ts
Normal file
32
data/Pokémon TCG Pocket/Genetic Apex/106.ts
Normal file
@ -0,0 +1,32 @@
|
||||
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: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user