1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00

feat: Add A3a - Extradimensional Crisis (#752)

This commit is contained in:
2025-05-29 16:18:14 +02:00
committed by GitHub
parent 082bb77f13
commit eb93ab4124
104 changed files with 4494 additions and 0 deletions

View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Extradimensional Crisis"
const card: Card = {
set: Set,
name: {
en: "Blacephalon"
},
illustrator: "Anesaki Dynamic",
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."
},
stage: "Basic",
attacks: [{
name: {
en: "Beat Punk"
},
damage: 130,
cost: ["Fire", "Fire", "Colorless"],
effect: {
en: "This Pokémon also does 70 damage to itself."
}
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 2
}
export default card