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:
52
data/Pokémon TCG Pocket/Promos-A/084.ts
Normal file
52
data/Pokémon TCG Pocket/Promos-A/084.ts
Normal file
@@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tapu Koko ex",
|
||||
es: "Tapu Koko ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Tsuji",
|
||||
rarity: "Four Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Plasma Hurricane",
|
||||
es: "Huracán Plasma"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "Take a {L} Energy from your Energy Zone and attach it to his Pokémon.",
|
||||
es: "Une 1 Energía {L} de tu área de Energía a este Pokémon."
|
||||
}
|
||||
},
|
||||
{
|
||||
name: {
|
||||
en: "Match Bolt",
|
||||
es: "Rayo Mach"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Lightning", "Lightning", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user