mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
57
data-asia/SV/SV1S/035.ts
Normal file
57
data-asia/SV/SV1S/035.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV1S"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ヒラヒナ",
|
||||
'zh-tw': "飄飄雛",
|
||||
th: "ฮิราฮินะ",
|
||||
id: "Flittle"
|
||||
},
|
||||
|
||||
illustrator: "Tika Matsuno",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [955],
|
||||
hp: 40,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
ja: "お腹の ヒラヒラから 放射する サイコパワーで わずか 1センチだけ つま先が 地面から 浮いている。",
|
||||
'zh-tw': "從肚子的褶邊放射出的精神力量,能夠讓牠浮在腳尖和地面 距離僅有區區1公分的空中。",
|
||||
th: "พลังจิตที่ปลดปล่อยออกมาจากส่วนที่พลิ้วไหวบริเวณท้องจะทำให้นิ้วเท้าลอยจากพื้นเพียง 1 เซนติเมตร",
|
||||
id: "Dengan kekuatan psikokinesis yang dipancarkan dari embel-embel di perutnya, ujung kaki Flittle melayang di udara hanya setinggi 1 cm."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "かいてんアタック",
|
||||
'zh-tw': "迴轉攻擊",
|
||||
th: "โจมตีหมุนวน",
|
||||
id: "Serangan Berputar"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user