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

58
data-asia/S/S9/017.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "鴨嘴炎獸",
ja: "ブーバーン"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 140,
types: ["Fire"],
description: {
'zh-tw': "大口吸氣時,肚子裡的火焰就會燃燒得更旺盛, 達到攝氏2000度。",
ja: "大きく 息を 吸いこむと 腹の 中の 炎が 勢いを 増して 摂氏2000度に 達する。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "百萬噸重拳",
ja: "メガトンパンチ"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "伏特爆發",
ja: "ボルトプロージョン"
},
effect: {
'zh-tw': "若自己的備戰區有「電擊魔獸」則增加120點傷害。",
ja: "自分のベンチに「エレキブル」がいるなら、120ダメージ追加。"
},
damage: "120",
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "F",
rarity: "Uncommon",
dexId: [467]
}
export default card