1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

53 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "火焰鳥",
th: "ไฟเยอร์",
ja: "ファイヤー"
},
illustrator: "otumami",
category: "Pokemon",
hp: 120,
types: ["Fire"],
description: {
'zh-tw': "每當牠拍動翅膀,羽毛就會閃爍出美麗的赤紅火焰。 是傳說的鳥寶可夢之一。",
th: "เป็นหนึ่งในโปเกมอนนกในตำนานที่เปลวเพลิงตรงปีกนั้นจะส่องประกายสีแดงอย่างงดงามเมื่อกระพือปีก",
ja: "羽ばたくと 翼の 炎が 赤く 美しく きらめく 伝説の 鳥ポケモンの 1匹。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "烈火之翼",
th: "ปีกไฟลุกโชน",
ja: "れっかのつばさ"
},
effect: {
'zh-tw': "若這隻寶可夢身上放置有傷害指示物則增加70點傷害。這個招式的傷害不計算弱點。",
th: "ถ้าโปเกมอนนี้มีตัวนับแดเมจวางอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 70 แดเมจของท่าต่อสู้นี้ไม่นำจุดอ่อนมาคิด",
ja: "このポケモンにダメカンがのっているなら、70ダメージ追加。このワザのダメージは弱点を計算しない。"
},
damage: "20",
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [146]
}
export default card