1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

52 lines
1.2 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 "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "フラベベ",
'zh-tw': "花蓓蓓",
th: "ฟลาเบเบ",
id: "Flabébé"
},
illustrator: "Mizue",
rarity: "Common",
category: "Pokemon",
dexId: [669],
hp: 40,
types: ["Psychic"],
description: {
ja: "赤い花に 乗った フラベベ。 生まれると すぐに お気に入りの 花を 探すために 飛びまわる。",
'zh-tw': "乘著紅花的花蓓蓓。從出生那刻開始就會為了 尋找喜歡的花而四處飛行。",
th: "ฟลาเบเบที่ขี่ดอกไม้สีแดง พอเกิดก็จะรีบบินไปมาเพื่อหาดอกไม้ที่ถูกใจทันที",
id: "Flabébé yang menunggangi bunga merah. Begitu lahir, ia langsung terbang berkeliling untuk mencari bunga favoritnya."
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "かふんだま",
'zh-tw': "花粉彈",
th: "ลูกปืนเรณู",
id: "Tembakan Serbuk Sari"
},
damage: 20
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card