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

69 lines
2.1 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 "../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