1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 20:01:58 +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

64
data-asia/S/S9a/016.ts Normal file
View File

@@ -0,0 +1,64 @@
import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "火炎獅",
ja: "カエンジシ"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 120,
types: ["Fire"],
description: {
'zh-tw': "能吐出攝氏6000度的氣息, 但不會用在獵物身上, 因為牠比較喜歡吃生肉。",
ja: "摂氏 6000度の 息を 吐くが 獲物には 使わない。 肉は 生のほうが 好み だから。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "灼熱氣場",
ja: "しゃくねつオーラ"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上對手的戰鬥寶可夢因【灼傷】而放置的傷害指示物的數量改為4個。",
ja: "このポケモンがいるかぎり、相手のバトルポケモンは、やけどでのせるダメカンの数が4個になる。"
}
}],
attacks: [{
name: {
'zh-tw': "火焰牙",
ja: "ほのおのキバ"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【灼傷】。",
ja: "コインを1回投げオモテなら、相手のバトルポケモンをやけどにする。"
},
damage: 90,
cost: ["Fire", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Rare",
dexId: [668]
}
export default card