1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

59
data-asia/SV/SV1a/009.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "マメバッタ",
'zh-tw': "豆蟋蟀",
th: "มาเมะบัตตะ",
id: "Nymble"
},
illustrator: "Sekio",
rarity: "Common",
category: "Pokemon",
dexId: [919],
hp: 50,
types: ["Grass"],
description: {
ja: "第3の脚が 畳まれている。 ピンチになると 10メートル以上 ジャンプする 脚力を 持つ。",
'zh-tw': "總是將第3對腳折起來。擁有在遇到危機時能夠 跳超過10公尺的跳躍力。",
th: "พับขาที่ 3 เอาไว้ มีพลังขาที่สามารถกระโดดได้สูงกว่า 10 เมตรเมื่อตกอยู่ในสถานการณ์คับขัน",
id: "Sepasang kaki ketiga Nymble terlipat. Pokémon ini memiliki kekuatan kaki untuk dapat melompat setinggi 10 meter ketika terdesak."
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "けりつける",
'zh-tw': "踹",
th: "ลูกเตะหนักหน่วง",
id: "Menyepak"
},
damage: 30,
effect: {
ja: "コインを1回投げウラなら、このワザは失敗。",
'zh-tw': "擲1次硬幣若為反面則這個招式失敗。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกก้อย ท่าต่อสู้นี้จะล้มเหลว",
id: "Lempar koin 1 kali. Jika hasilnya sisi belakang, serangan ini gagal."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card