1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

69
data-asia/S/S12/008.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "畢力吉翁",
th: "วิริซิออน",
ja: "ビリジオン"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 110,
types: ["Grass"],
description: {
'zh-tw': "與勾帕路翁和代拉基翁並肩保護合眾地區寶可夢 的傳說一直流傳至今。",
th: "มีตำนานเล่าขานว่า เคยร่วมมือกับโคบัลออนและเทราคิออนคอยเฝ้าคุ้มครองเหล่าโปเกมอนในภูมิภาคอิชชูอยู่เรื่อยมา",
ja: "コバルオン テラキオンと ともに イッシュ地方の ポケモンたちを 守り続けた 伝説が 残る。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "同心協力",
th: "สี่รวมเป็นหนึ่ง",
ja: "フォーアズワン"
},
effect: {
'zh-tw': "若自己的備戰區有「勾帕路翁」「代拉基翁」「凱路迪歐」則增加70點傷害。",
th: "ถ้าบนเบนช์ฝ่ายเรามี [โคบัลออน] [เทราคิออน] [เคลดิโอ] อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 70",
ja: "自分のベンチに「コバルオン」「テラキオン」「ケルディオ」がいるなら、70ダメージ追加。"
},
damage: "20",
cost: ["Colorless"]
}, {
name: {
'zh-tw': "綠葉吸取",
th: "ลีฟเดรน",
ja: "リーフドレイン"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「20」HP。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [20]",
ja: "このポケモンのHPを「20」回復する。"
},
damage: 50,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [640]
}
export default card