1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 21:39:55 +00:00

44 lines
713 B
TypeScript

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