mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
50 lines
871 B
TypeScript
50 lines
871 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV4s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Charcadet"
|
||
},
|
||
|
||
illustrator: "Mizue",
|
||
category: "Pokemon",
|
||
hp: 80,
|
||
types: ["Fire"],
|
||
|
||
description: {
|
||
id: "Jiwa bersemayam ke dalam arang terbakar, lalu berubah menjadi Pokémon. Dengan semangat bertarung yang membara, Charcadet menantang pertarungan meskipun dengan lawan yang kuat."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Membakar Semangat Petarung"
|
||
},
|
||
|
||
effect: {
|
||
id: "Pilih 1 lembar Energi Dasar {Api} dari Deck sendiri, lalu kenakan pada Pokémon ini. Kemudian, kocok Deck."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
id: "Kepalan Tinju"
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Fire", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Water",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |