mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
feat: Add Pocket promo cards 74 to 92 (#829)
This commit is contained in:
57
data/Pokémon TCG Pocket/Promos-A/074.ts
Normal file
57
data/Pokémon TCG Pocket/Promos-A/074.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Zeraora",
|
||||
es: "Zeraora"
|
||||
},
|
||||
|
||||
illustrator: "GIDORA",
|
||||
rarity: "One Star",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
en: "It electrifies its claws and tears its opponents\napart with them. Even if they dodge its attack,\nthey'll be electrocuted by the flying sparks.",
|
||||
es: "Hace jirones al oponente con sus garras electrificadas. Aunque\neste esquive los golpes, acaba electrocutado por las descargas."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Thunderclap Flash",
|
||||
es: "Destello Fulgurante"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "At the end of your first turn, take a {L} Energy from your Energy Zone and attach it to this Pokémon.",
|
||||
es: "Al final de tu primer turno, se unirá 1 Energía {L} de tu área de Energía a este Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Lightning Claw",
|
||||
es: "Garra Relámpago"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Lightning", "Lightning"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user