1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09: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

64
data-asia/SV/SV3/032.ts Normal file
View File

@ -0,0 +1,64 @@
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