mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
52
data-asia/SV/SV1V/042.ts
Normal file
52
data-asia/SV/SV1V/042.ts
Normal file
@ -0,0 +1,52 @@
|
||||
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
|
Reference in New Issue
Block a user