1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/020.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: "KEIICHIRO ITO",
category: "Pokemon",
hp: 80,
types: ["Fire"],
description: {
'zh-tw': "利用天花板和牆壁使出空中攻擊。尾巴上的火焰也是武器之一。",
ja: "天井や 壁を 利用して 空中殺法を 繰り出す。 尻尾の 炎も 武器の ひとつ。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "火焰",
ja: "ほのお"
},
damage: 30,
cost: ["Fire"]
}, {
name: {
'zh-tw': "噴射火焰",
ja: "かえんほうしゃ"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。",
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。"
},
damage: 50,
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [391]
}
export default card