mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-07 05:49:53 +00:00
56 lines
893 B
TypeScript
56 lines
893 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Extradimensional Crisis"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Celesteela"
|
|
},
|
|
|
|
illustrator: "REND",
|
|
rarity: "One Star",
|
|
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 |