1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

49
data-asia/SV/SV4K/009.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "マメバッタ",
'zh-tw': "豆蟋蟀",
th: "มาเมะบัตตะ"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
dexId: [919],
hp: 50,
types: ["Grass"],
description: {
ja: "第3の脚が 畳まれている。 ピンチになると 10メートル以上 ジャンプする 脚力を 持つ。",
'zh-tw': "總是將第3對腳折起來。擁有在遇到危機時能夠 跳超過10公尺的跳躍力。",
th: "พับขาที่ 3 เอาไว้ มีพลังขาที่สามารถกระโดดได้สูงกว่า 10 เมตรเมื่อตกอยู่ในสถานการณ์คับขัน"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "はねまわる",
'zh-tw': "活蹦亂跳",
th: "สะบัดตัว"
},
damage: 30
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card