1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

63
data-asia/SV/SV5a/036.ts Normal file
View File

@ -0,0 +1,63 @@
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