mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
54 lines
883 B
TypeScript
54 lines
883 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Ceruledge"
|
||
},
|
||
|
||
illustrator: "Rond",
|
||
category: "Pokemon",
|
||
hp: 140,
|
||
types: ["Fire"],
|
||
|
||
description: {
|
||
id: "Wujud evolusi Charcadet menjadi Ceruledge oleh zirah kuno yang diselimuti dendam. Pokémon ini menebas musuhnya tanpa ampun."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Blaze Curse"
|
||
},
|
||
|
||
effect: {
|
||
id: "Buang semua Energi Spesial yang dikenakan pada semua Pokémon lawan ke Trash."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
id: "Sabetan Api Hitam"
|
||
},
|
||
|
||
effect: {
|
||
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
|
||
},
|
||
|
||
damage: 160,
|
||
cost: ["Fire", "Fire", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Water",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |