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:
50
data/Pokémon TCG Pocket/Promos-A/076.ts
Normal file
50
data/Pokémon TCG Pocket/Promos-A/076.ts
Normal file
@@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Blacephalon",
|
||||
es: "Blacephalon"
|
||||
},
|
||||
|
||||
illustrator: "Hasuno",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
en: "It slithers toward people. Then, without warning, it triggers the\nexplosion of its own head. It's apparently one kind of Ultra Beast",
|
||||
es: "Parece ser uno de los temibles Ultraentes. Se acerca a la gente\ncontoneándose y hace explotar su propia cabeza súbitamente",
|
||||
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Beat Punk",
|
||||
es: "Beat Punk"
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 70 damage to itself.",
|
||||
es: "Este Pokémon también se hace 70 puntos de daño a si mismo"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
boosters: ["vol9"]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user