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

53
data-asia/S/S9/016.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "鴨嘴火獸",
ja: "ブーバー"
},
illustrator: "Shinji Kanda",
category: "Pokemon",
hp: 90,
types: ["Fire"],
description: {
'zh-tw': "會用火焰解決獵物。但是一不留神就會把獵物 燒得太焦,然後才後悔。",
ja: "炎で 獲物を しとめる。 ついつい 焼きすぎて 黒コゲに してしまい 後悔する。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "踢倒",
ja: "けたぐり"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "火拳",
ja: "ほのおパンチ"
},
damage: 70,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Common",
dexId: [126]
}
export default card