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

63 lines
1.5 KiB
TypeScript
Raw Permalink 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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "フラベベ",
'zh-tw': "花蓓蓓",
th: "ฟลาเบเบ"
},
illustrator: "Yukiko Baba",
rarity: "Common",
category: "Pokemon",
dexId: [669],
hp: 40,
types: ["Psychic"],
description: {
ja: "赤い花に 乗った フラベベ。 生まれると すぐに お気に入りの 花を 探すために 飛びまわる。",
'zh-tw': "乘著紅花的花蓓蓓。 從出生那刻開始就會為了 尋找喜歡的花而四處飛行。",
th: "ฟลาเบเบที่ขี่ดอกไม้สีแดง พอเกิดก็จะรีบบินไปมาเพื่อหาดอกไม้ที่ถูกใจทันที"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "きずをなおす",
'zh-tw': "療傷",
th: "รักษาบาดแผล"
},
effect: {
ja: "自分のポケモン1匹のHPを「30」回復する。",
'zh-tw': "將自己的1隻寶可夢恢復「30」HP。",
th: "ฟื้นฟู HP ของโปเกมอนฝ่ายเรา 1 ตัว [30]"
}
}, {
cost: ["Psychic"],
name: {
ja: "ようせいのかぜ",
'zh-tw': "妖精之風",
th: "สายลมแห่งภูตพราย"
},
damage: 10
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card