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

61
data-asia/S/S12a/224.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "布莉姆溫VMAX",
ja: "ブリムオンVMAX"
},
illustrator: "sui",
category: "Pokemon",
hp: 320,
types: ["Psychic"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "魔女的領域",
ja: "まじょのりょういき"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。選擇最多2個放置於自己的場上寶可夢身上的傷害指示物改放於對手的戰鬥寶可夢身上。",
ja: "自分の番に1回使える。自分の場のポケモンにのっているダメカンを2個まで選び、相手のバトルポケモンにのせ替える。"
}
}],
attacks: [{
name: {
'zh-tw': "超極巨天譴雷誅",
ja: "キョダイテンバツ"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。",
ja: "相手のバトルポケモンをこんらんにする。"
},
damage: 150,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 2,
regulationMark: "F"
}
export default card