mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
56 lines
1.6 KiB
TypeScript
56 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Centiskorch",
|
||
th: "มารุยาคุเดะ"
|
||
},
|
||
|
||
illustrator: "Aliya Chen",
|
||
category: "Pokemon",
|
||
hp: 130,
|
||
types: ["Fire"],
|
||
|
||
description: {
|
||
id: "Suhu tubuh Centiskorch saat memancarkan panas mencapai sekitar 800 ℃. Pokémon ini akan loncat menyerang sambil mengelokkan tubuhnya bagaikan pecut.",
|
||
th: "อุณหภูมิร่างยามปล่อยความร้อนประมาณ 800 องศาเซลเซียส โค้ง ร่างราวกับแส้แล้วพุ่งเข้าโจมตี"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Gelombang Panas Berkobar",
|
||
th: "คลื่นร้อนเผาไหม้"
|
||
},
|
||
|
||
effect: {
|
||
id: "Serangan ini juga memberikan kerusakan masing-masing sejumlah 30 kepada semua Pokémon Cadangan sendiri. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]",
|
||
th: "โปเกมอนบนเบนช์ฝ่ายเราทุกตัว ก็จะได้รับแดเมจตัวละ 30 ด้วย {โปเกมอน บนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}"
|
||
},
|
||
|
||
damage: 130,
|
||
cost: ["Fire"]
|
||
}, {
|
||
name: {
|
||
id: "Heat Blast",
|
||
th: "ฮีทบลาสต์"
|
||
},
|
||
|
||
damage: 80,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Water",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |