1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

62 lines
1.6 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "凱路迪歐",
th: "เคลดิโอ",
ja: "ケルディオ"
},
illustrator: "Naoyo Kimura",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
'zh-tw': "透過下定決心來讓全身充滿力量並變得敏捷。 當跳躍起來的時候能看到殘影。",
th: "เมื่อเตรียมใจได้แล้ว พลังจะเอ่อล้นทั่วกายจนเคลื่อนไหวได้อย่างว่องไว พอกระโดดแล้วจะเห็นภาพค้างติดตา",
ja: "覚悟を 決めることで 全身に 力が みなぎって 素早くなり 飛び跳ねると 残像が みえる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "踢飛",
th: "ดีด",
ja: "けとばす"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "隊列之力",
th: "ไลน์ฟอร์ซ",
ja: "ラインフォース"
},
effect: {
'zh-tw': "增加自己的備戰寶可夢的數量×20點傷害。",
th: "แดเมจจะเพิ่มตามจำนวนโปเกมอนบนเบนช์ฝ่ายเรา x20",
ja: "自分のベンチポケモンの数×20ダメージ追加。"
},
damage: "10",
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [647]
}
export default card