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

66
data-asia/S/S12a/066.ts Normal file
View File

@ -0,0 +1,66 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "布莉姆溫VMAX",
th: "บริมออนVMAX",
ja: "ブリムオンVMAX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 320,
types: ["Psychic"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "魔女的領域",
th: "อาณาเขตแม่มด",
ja: "まじょのりょういき"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。選擇最多2個放置於自己的場上寶可夢身上的傷害指示物改放於對手的戰鬥寶可夢身上。",
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกตัวนับแดเมจที่วางอยู่บนโปเกมอนบนกระดานฝ่ายเราได้สูงสุด 2 ตัว ย้ายไปวางที่โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม",
ja: "自分の番に1回使える。自分の場のポケモンにのっているダメカンを2個まで選び、相手のバトルポケモンにのせ替える。"
}
}],
attacks: [{
name: {
'zh-tw': "超極巨天譴雷誅",
th: "กิกะทัณฑ์สวรรค์",
ja: "キョダイテンバツ"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]",
ja: "相手のバトルポケモンをこんらんにする。"
},
damage: 150,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 2,
regulationMark: "F"
}
export default card