1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

63
data-asia/S/S12/023.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "凱路迪歐",
th: "เคลดิโอ",
ja: "ケルディオ"
},
illustrator: "Atsushi Furusawa",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
'zh-tw': "透過下定決心來讓全身充滿力量並變得敏捷。 當跳躍起來的時候能看到殘影。",
th: "เมื่อเตรียมใจได้แล้ว พลังจะเอ่อล้นทั่วกายจนเคลื่อนไหวได้อย่างว่องไว พอกระโดดแล้วจะเห็นภาพค้างติดตา",
ja: "覚悟を 決めることで 全身に 力が みなぎって 素早くなり 飛び跳ねると 残像が みえる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "飛濺",
th: "สแปลช",
ja: "スプラッシュ"
},
damage: 20,
cost: ["Water"]
}, {
name: {
'zh-tw': "同心協力",
th: "สี่รวมเป็นหนึ่ง",
ja: "フォーアズワン"
},
effect: {
'zh-tw': "若自己的備戰區有「勾帕路翁」「代拉基翁」「畢力吉翁」則增加170點傷害。",
th: "ถ้าบนเบนช์ฝ่ายเรามี [โคบัลออน] [เทราคิออน] [วิริซิออน] อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 170",
ja: "自分のベンチに「コバルオン」「テラキオン」「ビリジオン」がいるなら、170ダメージ追加。"
},
damage: "50",
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Uncommon",
dexId: [647]
}
export default card