1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

81 lines
2.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ソウブレイズ",
'zh-tw': "蒼炎刃鬼",
th: "โซเบลดส์",
id: "Ceruledge"
},
illustrator: "Ryota Murayama",
category: "Pokemon",
dexId: [937],
hp: 140,
types: ["Psychic"],
description: {
ja: "両腕の 炎の剣は 志半ばで 力つきた 剣士の 怨念で 燃え上がる。",
'zh-tw': "雙臂的火焰之劍靠著在得志前就亡命的 劍士怨念而燃燒。",
th: "ดาบเพลิงที่แขนทั้งสองข้างเผาไหม้ด้วยความแค้นของนักดาบที่สิ้นลมไปก่อนที่จะบรรลุเป้าหมาย",
id: "Pedang api pada sepasang lengan Ceruledge membara dengan dendam kesatria yang meninggal sebelum tujuannya tercapai."
},
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ライフサッカー",
'zh-tw': "生命之紗",
th: "ไลฟ์ซัคเกอร์",
id: "Life Sucker"
},
damage: 50,
effect: {
ja: "このポケモンのHPを「30」回復する。",
'zh-tw': "將這隻寶可夢恢復「30」HP。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]",
id: "Pulihkan HP Pokémon ini sejumlah 30."
}
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "とうしのたいけん",
'zh-tw': "鬥士的巨劍",
th: "ดาบยักษ์ของนักสู้",
id: "Pedang Besar Semangat Petarung"
},
damage: "100+",
effect: {
ja: "相手のバトルポケモンが「ポケモンex・V」なら、100ダメージ追加。",
'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」則增加100點傷害。",
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็น [โปเกมอน【ex】 /【V】] การโจมตีนี้จะเพิ่มแดเมจอีก 100",
id: "Jika Pokémon Bertarung lawan adalah Pokémon {ex}/{V}, kerusakan yang diberikan bertambah sejumlah 100."
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card