1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +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,56 @@
import { Card } from "../../../interfaces"
import Set from "../Extradimensional Crisis"
const card: Card = {
set: Set,
name: {
en: "Celesteela"
},
illustrator: "kawayoo",
rarity: "Three Diamond",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
en: "One of the dangerous UBs, high energy readings\ncan be detected coming from both of its\nhuge arms."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
en: "Ultra Thrusters"
},
effect: {
en: "Once during your turn, you may switch your Active Ultra Beast with 1 of your Benched Ultra Beasts."
}
}],
attacks: [{
name: {
en: "Moombahton"
},
damage: 100,
cost: ["Colorless", "Colorless", "Colorless"],
effect: {
en: "Flip a coin. If tails, this attack does nothing."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 4
}
export default card