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

64 lines
1.5 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "バンギラスex",
'zh-tw': "班基拉斯ex",
th: "บันกิราสex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 340,
types: ["Lightning"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Fighting"],
name: {
ja: "やまとばし",
'zh-tw': "飛山",
th: "ปาภูเขา"
},
damage: 120,
effect: {
ja: "自分の山札を上から2枚トラッシュする。",
'zh-tw': "將自己的牌庫上方2張卡丟棄。",
th: "ทิ้งการ์ด 2 ใบจากด้านบนของสำรับการ์ดฝ่ายเราที่ตำแหน่งทิ้งการ์ด"
}
}, {
cost: ["Fighting", "Fighting"],
name: {
ja: "トールランページ",
'zh-tw': "索爾亂暴",
th: "ธอร์แผลงฤทธิ์"
},
damage: "150+",
effect: {
ja: "自分のベンチポケモンにダメカンがのっているなら、100ダメージ追加。",
'zh-tw': "若自己的備戰寶可夢身上放置有傷害指示物則增加100點傷害。",
th: "ถ้าโปเกมอนบนเบนช์ฝ่ายเรามีตัวนับแดเมจวางอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 100"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card